Spaces:
Sleeping
Sleeping
| """ | |
| Pydantic models for the RAG backend. | |
| """ | |
| from app.models.schemas import ( | |
| DocumentStatus, | |
| ChunkMetadata, | |
| DocumentChunk, | |
| UploadRequest, | |
| UploadResponse, | |
| Citation, | |
| ChatRequest, | |
| ChatResponse, | |
| RetrievalResult, | |
| KnowledgeBaseStats, | |
| HealthResponse, | |
| ) | |
| __all__ = [ | |
| "DocumentStatus", | |
| "ChunkMetadata", | |
| "DocumentChunk", | |
| "UploadRequest", | |
| "UploadResponse", | |
| "Citation", | |
| "ChatRequest", | |
| "ChatResponse", | |
| "RetrievalResult", | |
| "KnowledgeBaseStats", | |
| "HealthResponse", | |
| ] | |