Integrate vector database capabilities into your LLM applications. Effortlessly manage collections, perform semantic searches, and retrieve data with advanced filtering. Enhance your AI models with powerful data retrieval features for improved context and performance.
Tools
chroma_list_collections
List all collection names in the Chroma database with pagination support. Args: limit: Optional maximum number of collections to return offset: Optional number of collections to skip before returning results Returns: List of collection names
chroma_create_collection
Create a new Chroma collection with configurable HNSW parameters. Args: collection_name: Name of the collection to create hnsw_space: Distance function used in HNSW index. Options: 'l2', 'ip', 'cosine' hnsw_construction_ef: Size of the dynamic candidate list for constructing the HNSW graph hnsw_search_ef: Size of the dynamic candidate list for searching the HNSW graph hnsw_M: Number of bi-directional links created for every new element hnsw_num_threads: Number of threads to use during HNSW construction hnsw_resize_factor: Factor to resize the index by when it's full hnsw_batch_size: Number of elements to batch together during index construction hnsw_sync_threshold: Number of elements to process before syncing index to disk
chroma_peek_collection
Peek at documents in a Chroma collection. Args: collection_name: Name of the collection to peek into limit: Number of documents to peek at
chroma_get_collection_info
Get information about a Chroma collection. Args: collection_name: Name of the collection to get info about
Installation
Login to configure client