Python SDK for CortexDB — a RAG-powered memory database
Project description
CortexDB Python SDK
A Python client for the CortexDB RAG backend, providing easy access to ingestion, querying, and LLM orchestration.
Features
- Setup API: Configure LLM providers (Gemini, OpenAI, Azure).
- Ingest API: Ingest documents with automatic embedding generation.
- Query API: Perform semantic search, entity retrieval, and graph traversals.
- Native LLM Integration: Uses
google-genaifor native Gemini support.
Installation
pip install -e .
Usage
See main.py for a complete example of setting up a medical chatbot.
from cortexdb import CortexDB
db = CortexDB("http://localhost:8080")
# Setup
db.setup.configure(provider="GEMINI", api_key="...", chat_model="gemini-2.0-flash", embed_model="gemini-embedding-001")
# Ingest
db.ingest.document(uid="user-1", document_title="Test Doc", document_text="Hello world")
db.ingest.prompt(uid="user-1", converser="USER", text="What is this?")
# Query
results = db.query.search_contexts("Hello", limit=5)
Testing
pip install pytest respx
pytest tests/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cortexdb_py-0.2.8.tar.gz
(8.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cortexdb_py-0.2.8.tar.gz.
File metadata
- Download URL: cortexdb_py-0.2.8.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.9.25 Linux/6.14.0-1017-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9b229bdd4ce72d55871a27a57fef90c600170dfb6bc41fa641841275d03cf5c
|
|
| MD5 |
f750d8add470c601c968495dfe4ba84a
|
|
| BLAKE2b-256 |
2f6e69ffc6f68e41d090fc42e58a9a8087711a6d9f55c82dd0f5b2faa035bd67
|
File details
Details for the file cortexdb_py-0.2.8-py3-none-any.whl.
File metadata
- Download URL: cortexdb_py-0.2.8-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.9.25 Linux/6.14.0-1017-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1823001767d0dbd2b0b7dd1c6b3eac27a81162cf7384ecbd3a60c62490d0ae2f
|
|
| MD5 |
049329366ad3d4a0dd3d7f489d36b423
|
|
| BLAKE2b-256 |
1cdfb2d5b04b1165a0a1a51ff002f405807b12395b60a52586554c65d2ef47dc
|