<< All versions
Skill v1.0.0
currentAutomated scan100/100mkurman/zorai/chromadb
──Details
PublishedJuly 29, 2026 at 12:08 PM
Content Hashsha256:90dd1fd5fbda6031...
Git SHAd0acbfaf3d62
──Files
Files (1 file, 1.3 KB)
SKILL.md1.3 KBactive
SKILL.md · 43 lines · 1.3 KB
version: "1.0.0" name: chromadb description: "Chroma — 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." tags: [chromadb, vector-database, embeddings, rag, semantic-search, python, zorai]
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
bash
uv pip install chromadb
Basic Usage
python
import chromadbclient = chromadb.PersistentClient(path="./chroma_data")collection = client.create_collection(name="documents")# Add documents with metadatacollection.add(documents=["Paris is the capital of France.", "Berlin is the capital of Germany."],metadatas=[{"country": "France"}, {"country": "Germany"}],ids=["doc1", "doc2"],)# Query with filterresults = collection.query(query_texts=["What is the capital of France?"],n_results=3,where={"country": "France"},)print(results["documents"][0])