Spaces:
Running
Running
| """API models module.""" | |
| from src.api.models.models import ( | |
| ErrorResponse, | |
| HealthResponse, | |
| IngestRequest, | |
| IngestResponse, | |
| MetadataChunkResponse, | |
| MetadataQueryRequest, | |
| MetadataQueryResponse, | |
| QueryRequest, | |
| QueryResponse, | |
| Settings, | |
| ) | |
| __all__ = [ | |
| "ErrorResponse", | |
| "HealthResponse", | |
| "IngestRequest", | |
| "IngestResponse", | |
| "MetadataChunkResponse", | |
| "MetadataQueryRequest", | |
| "MetadataQueryResponse", | |
| "QueryRequest", | |
| "QueryResponse", | |
| "Settings", | |
| ] | |