What problem does it solve? Building semantic search or RAG applications requires a database that stores embeddings alongside metadata and supports similarity queries, which is complex to implement from scratch. ## Core Features & Use Cases - Vector Storage & Search: Create collections, add documents with embeddings and metadata, and run similarity queries with metadata filters using operators like $and, $gt, and $in. - Flexible Embedding Functions: Use the default Sentence Transformers model, OpenAI, HuggingFace, or custom embedding functions. - Framework Integration: Connect with LangChain and LlamaIndex, or run Chroma in server mode for multi-user production deployments. - Use Case: Build a document Q&A system by chunking documents, storing them in a persistent Chroma collection, and retrieving relevant passages to augment LLM prompts. ## Quick Start Use the chroma skill to create a persistent collection, add my documents with metadata, and run a filtered similarity search.