The knowledge base endpoints are under active development. The search endpoint currently returns a placeholder response. Ingest and status endpoints are planned for a future phase.
GET /api/v1/knowledge/search
Search the knowledge base using a query string. Returns relevant documents ranked by semantic similarity.Current response
Planned request parameters
The following query parameters are planned for the Phase 2 implementation:The search query string. Will be embedded and used for semantic similarity search against the ChromaDB collection.
Maximum number of documents to return.
Planned response shape
Based on the existing ChromaDB integration, the completed endpoint is expected to return:Example
Upcoming endpoints
The following endpoints are planned for Phase 2 and are not yet available:| Method | Path | Description |
|---|---|---|
POST | /api/v1/knowledge/ingest | Ingest documents into the global knowledge base |
GET | /api/v1/knowledge/status | Return collection stats (document count, vector count, status) |
/knowledge/status endpoint will return a response in this format:
To ingest documents into a per-project vector store right now, use the projects ingest endpoint.