1.17.6
Support Chroma API version
You can now set the ChrmoaDB API version when creating the instance.
class MyChatBot extends RAG
{
...
protected function vectorStore(): VectorStoreInterface
{
return new ChromaVectorStore(
collection: 'neuron-ai',
host: 'http://localhost:8000',
topK: 5,
version: 'v1',
);
}
}