Hi - I answer from the OpenSmartRoute documentation: routing, the API, plans and quotas, self-hosting. Ask away, or open a support ticket if you need a person.
Grounded in the docs - follow a source before acting on it.
db-chroma - Skill - OpenSmartRoute
Skillv1.0.0
db-chroma
The mandatory tree at `content/06-decision-tree.xml` routes by corpus size, tenancy, and concurrency to Chroma, Qdrant, Weaviate, or pgvector. Use it before instantiating a client so the scale-up path
Imported from faionfaion/faion-network (skills/faion/knowledge/ml-engineering/db-chroma/AGENTS.md). Install upstream with npx skills add faionfaion/faion-network --skill db-chroma. Copyright stays with the author.
Chroma Vector Database
Summary
One-sentence: Embedded SQLite/HNSW vector store for RAG prototyping with zero infrastructure and idempotent get_or_create_collection ingestion; single-process only.
One-paragraph: Chroma runs in-process (PersistentClient backed by SQLite + HNSW). Distance metric is set at collection creation and cannot be changed without recreating. IDs are strings (integers must be stringified). get_or_create_collection makes re-runs idempotent. Integrates directly with LangChain and LlamaIndex. Use Chroma for dev / eval / single-developer prototypes; promote to Qdrant or Pinecone before crossing 1M vectors, multi-tenant SaaS, or multi-process write workloads.
Ефективно для: Solopreneur prototyping a RAG pipeline locally — closes the gap between "open notebook" and a persistent vector store without Docker overhead.
Applies If (ALL must hold)
Single-developer prototype OR CI eval harness OR notebook-based research.
Corpus < 1M vectors.
Single-process write workload; no concurrent writers.
Acceptable to migrate to a production vector store before scale-up.
Skip If (ANY kills it)
Production deployment with >1M vectors — load [[db-qdrant]] or [[db-weaviate]].
The mandatory tree at content/06-decision-tree.xml routes by corpus size, tenancy, and concurrency to Chroma, Qdrant, Weaviate, or pgvector. Use it before instantiating a client so the scale-up path is explicit.
Use it
Copy one of these into your project. Installing also returns the manifest and these snippets.
yaml
targets:
- https://api.opensmartroute.ai/api/v1/registry/faionfaion-faion-network-db-chroma/manifest # or paste the manifest below
Manifest
An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.
faionfaion-faion-network-db-chroma.ocm.jsonjson
{
"ocm": "1",
"id": "faionfaion-faion-network-db-chroma",
"kind": "skill",
"name": "db-chroma",
"description": "The mandatory tree at `content/06-decision-tree.xml` routes by corpus size, tenancy, and concurrency to Chroma, Qdrant, Weaviate, or pgvector. Use it before instantiating a client so the scale-up path is explicit.",
"publisher": "faionfaion",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github-agents"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"The mandatory tree at `content/06-decision-tree.xml` routes by corpus size, tenancy, and concurrency to Chroma, Qdrant, Weaviate, or pgvector. Use it before instantiating a client so the scale-up path is explicit."
],
"primary": false,
"metadata": {
"source": {
"provider": "github-agents",
"repository": "https://github.com/faionfaion/faion-network",
"path": "skills/faion/knowledge/ml-engineering/db-chroma/AGENTS.md",
"ref": "8e31684537e64d45c75264b1e0a2384f9b024a34",
"url": "https://github.com/faionfaion/faion-network/blob/8e31684537e64d45c75264b1e0a2384f9b024a34/skills/faion/knowledge/ml-engineering/db-chroma/AGENTS.md",
"key": "faionfaion/faion-network/skills/faion/knowledge/ml-engineering/db-chroma/AGENTS.md"
}
},
"instructions": "# Chroma Vector Database\n\n## Summary\n\n**One-sentence:** Embedded SQLite/HNSW vector store for RAG prototyping with zero infrastructure and idempotent `get_or_create_collection` ingestion; single-process only.\n\n**One-paragraph:** Chroma runs in-process (PersistentClient backed by SQLite + HNSW). Distance metric is set at collection creation and cannot be changed without recreating. IDs are strings (integers must be stringified). `get_or_create_collection` makes re-runs idempotent. Integrates directly with LangChain and LlamaIndex. Use Chroma for dev / eval / single-developer prototypes; promote",
"cost": {
"context_tokens": 971
}
}
Fetch it by URL: GET /api/v1/registry/faionfaion-faion-network-db-chroma/manifest?version=1.0.0
Reviews
Star ratings from people who tried it. One review per account; edit yours any time.
No reviews yet. Install it, try it, and be the first to rate it.