chromadb
SkillSearchChroma — AI-native embedding database. In-process, lightweight vector store with automatic embedding, metadata filtering, and full-text search. Simplest path from prototype to production RAG.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the chromadb skill
What this skill tells your AI
The instructions your AI receives, as published by mkurman/zorai in skills/scientific-skills/chromadb/SKILL.md and read by ahel’s review.
Overview
Chroma is an AI-native embedding database optimized for RAG workflows. Lightweight, in-process, with automatic embedding via sentence-transformers, metadata filtering, and semantic search — no separate server required. Fastest path from prototype to production.
Installation
uv pip install chromadb
Basic Usage
import chromadb
client = chromadb.PersistentClient(path="./chroma_data")
collection = client.create_collection(name="documents")
# Add documents with metadata
collection.add(
documents=["Paris is the capital of France.", "Berlin is the capital of Germany."],
metadatas=[{"country": "France"}, {"country": "Germany"}],
ids=["doc1", "doc2"],
)
# Query with filter
results = collection.query(
query_texts=["What is the capital of France?"],
n_results=3,
where={"country": "France"},
)
print(results["documents"][0])
References
Signals
- GitHub stars
- 324
- Forks
- 26
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
chromadb- Source
- github.com/mkurman/zorai