Supported Vector Data Store
Chroma
store = build_data_store( store_type="chroma", index_name="your_index_name", embedding=your_embedding, config: {"client_type": "memory"} )store = build_data_store( store_type="chroma", index_name="your_index_name", embedding=your_embedding, config={"client_type": "persistent", "persist_directory": "/path/to/dir"} )store = build_data_store( store_type="chroma", index_name="your_index_name", embedding=your_embedding, host="localhost", port=8000, config={"client_type": "http"} )
Elasticsearch
Last updated
Was this helpful?