Expand description
Error types for the cognee HTTP server.
ApiError mirrors Python’s CogneeApiError / RequestValidationError shapes
(see cognee/api/client.py). ServerError is used for startup/runtime failures.
Structs§
- Validation
Details - Carries the Python-shaped validation error payload:
{"detail": [...], "body": <original_body>}.
Enums§
- ApiError
- HTTP-layer error type. Every handler returns
Result<T, ApiError>and theIntoResponseimpl maps variants to the Python-compatible JSON envelopes. - Pipeline
Error Source - Which pipeline router produced a
PipelineErroredevent. - Recall
Error Body - Recall-router-specific error envelopes.
- Server
Error - Errors that can occur at server startup or runtime (not per-request).