Welcome to CapyDB! The chillest AI-native database out there! This guide will help you get started quickly with our powerful API service. Whether you're inserting your first document or exploring advanced features, you'll find everything you need to Save Documents (No Need for Embedding!) in just a few simple steps.
pip install capydb
Start by signing up for CapyDB:
For this quick start guide (non-production environment), directly assign your API key and project ID to variables:
CAPYDB_API_KEY = "your_api_key"
CAPYDB_PROJECT_ID = "your_project_id"
Important: Only hardcode credentials for local development.
In production, use environment variables or secure server-side logic for API Key and Collection URL to prevent unauthorized access and keep information secure.
from capydb import CapyDB, EmbText
from dotenv import load_dotenv
# Load environment variables from .env
load_dotenv()
client = CapyDB()
db = client.db("your_db_name")
collection = db.collection("your_collection_name")
# Define the document to be inserted
docs = [
{
"name": "Alice",
"age": "7",
"background": EmbText(
"Through the Looking-Glass follows Alice as she steps into a fantastical world..."
),
}
]
# Make the POST request to insert the document
response = collection.insert(docs)
When saving an EmbText
data type, CapyDB performs additional processing:
EmbText.chunks
in addition to EmbText.text
and EmbText.emb_model
.Here's how to perform a query using Python:
query = "Alice in a fantastical world"
filter_dict = {"category": "fiction"} # Optional
projection = {"mode": "include", "fields": ["title", "content"]} # Optional
response = collection.query(query, filter_dict, projection)
Successful query response:
{
"matches": [
{
"chunk": "Through the Looking-Glass follows Alice as she steps into a fantastical world...",
"path": "background",
"chunk_n": 0,
"score": 0.703643203,
"document": {"_id": ObjectId("671bf91580bffb6387b4f3d2")}
}
]
}
Your feedback helps us improve our documentation. Let us know what you think!