🤖
Agent

chroma

by Chroma Core gh-agent--chroma-core--chroma
Nexus Index
49.1 Top 100%
S: Semantic 50
A: Authority 0
P: Popularity 78
R: Recency 100
Q: Quality 50
Tech Context
Vital Performance
0 DL / 30D
0.0%
Logic Audit 49.1 FNI Score
- Tools
Python Language
Popular 27.1K Stars
Community Capability
Apache-2.0 License
Agent Information Summary
Entity Passport
Registry ID gh-agent--chroma-core--chroma
License Apache-2.0
Provider github
📜

Cite this agent

Academic & Research Attribution

BibTeX
@misc{gh_agent__chroma_core__chroma,
  author = {Chroma Core},
  title = {chroma Agent},
  year = {2026},
  howpublished = {\url{https://free2aitools.com/agent/gh-agent--chroma-core--chroma}},
  note = {Accessed via Free2AITools Knowledge Fortress}
}
APA Style
Chroma Core. (2026). chroma [Agent]. Free2AITools. https://free2aitools.com/agent/gh-agent--chroma-core--chroma

đŸ”ŦTechnical Deep Dive

Full Specifications [+]

Quick Commands

🐍 PIP Install
pip install chroma

âš–ī¸ Nexus Index V2.0

49.1
TOP 100% SYSTEM IMPACT
Semantic (S) 50
Authority (A) 0
Popularity (P) 78
Recency (R) 100
Quality (Q) 50

đŸ’Ŧ Index Insight

FNI V2.0 for chroma: Semantic (S:50), Authority (A:0), Popularity (P:78), Recency (R:100), Quality (Q:50).

Free2AITools Nexus Index

Verification Authority

Unbiased Data Node Refresh: VFS Live

Agent Architecture

Chroma Chroma

Chroma - the open-source data infrastructure for AI.

Discord | License | Docs | Homepage

bash
pip install chromadb # python client
# for javascript, npm install chromadb!
# for client-server mode, chroma run --path /chroma_db_path

Chroma Cloud

Our hosted service, Chroma Cloud, powers serverless vector, hybrid, and full-text search. It's extremely fast, cost-effective, scalable and painless. Create a DB and try it out in under 30 seconds with $5 of free credits.

Get started with Chroma Cloud

API

The core API is only 4 functions (run our 💡 Google Colab):

python
import chromadb
# setup Chroma in-memory, for easy prototyping. Can add persistence easily!
client = chromadb.Client()

# Create collection. get_collection, get_or_create_collection, delete_collection also available!
collection = client.create_collection("all-my-documents")

# Add docs to the collection. Can also update and delete. Row-based API coming soon!
collection.add(
    documents=["This is document1", "This is document2"], # we handle tokenization, embedding, and indexing automatically. You can skip that and add your own embeddings as well
    metadatas=[{"source": "notion"}, {"source": "google-docs"}], # filter on these!
    ids=["doc1", "doc2"], # unique for each doc
)

# Query/search 2 most similar results. You can also .get by id
results = collection.query(
    query_texts=["This is a query document"],
    n_results=2,
    # where={"metadata_field": "is_equal_to_this"}, # optional filter
    # where_document={"$contains":"search_string"}  # optional filter
)

Learn about all features on our Docs

Get involved

Chroma is a rapidly developing project. We welcome PR contributors and ideas for how to improve the project.

Release Cadence We currently release new tagged versions of the pypi and npm packages on Mondays. Hotfixes go out at any time during the week.

License

Apache 2.0

Social Proof

GitHub Repository
27.1KStars
🔄 Daily sync (03:00 UTC)

AI Summary: Based on GitHub metadata. Not a recommendation.

📊 FNI Methodology 📚 Knowledge Baseâ„šī¸ Verify with original source

đŸ›Ąī¸ Agent Transparency Report

Technical metadata sourced from upstream repositories.

Open Metadata

🆔 Identity & Source

id
gh-agent--chroma-core--chroma
slug
chroma-core--chroma
source
github
author
Chroma Core
license
Apache-2.0
tags
ai, database, document-retrieval, embeddings, llm, llms, rag, rust, rust-lang, vector-database, agents, ai-agents

âš™ī¸ Technical Specs

architecture
null
params billions
null
context length
null
pipeline tag
rag

📊 Engagement & Metrics

downloads
0
stars
27,116
forks
0
github stars
27,116

Data indexed from public sources. Updated daily.