{ "opencollection": "1.0.0", "info": { "name": "Qubrid AI Compute Chat Completions Knowledge Bases API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Knowledge Bases", "type": "folder" }, "items": [ { "info": { "name": "List knowledge bases", "type": "http" }, "http": { "method": "GET", "url": "https://platform.qubrid.com/api/v1/rag/knowledge-bases" }, "docs": "Returns a list of all knowledge bases associated with the authenticated user's account, including their name, document count, and processing status." }, { "info": { "name": "Create a knowledge base", "type": "http" }, "http": { "method": "POST", "url": "https://platform.qubrid.com/api/v1/rag/knowledge-bases", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new knowledge base for storing and retrieving enterprise documents. The knowledge base serves as a container for documents that will be chunked, embedded, and indexed for retrieval-augmented generation queries." }, { "info": { "name": "Retrieve a knowledge base", "type": "http" }, "http": { "method": "GET", "url": "https://platform.qubrid.com/api/v1/rag/knowledge-bases/:knowledge_base_id", "params": [ { "name": "knowledge_base_id", "value": "", "type": "path", "description": "The unique identifier of the knowledge base." } ] }, "docs": "Returns details about a specific knowledge base including its configuration, document count, total chunk count, and embedding model used." }, { "info": { "name": "Delete a knowledge base", "type": "http" }, "http": { "method": "DELETE", "url": "https://platform.qubrid.com/api/v1/rag/knowledge-bases/:knowledge_base_id", "params": [ { "name": "knowledge_base_id", "value": "", "type": "path", "description": "The unique identifier of the knowledge base." } ] }, "docs": "Permanently deletes a knowledge base and all of its associated documents, embeddings, and vector index data. This action cannot be undone." } ] } ], "bundled": true }