Skip to content

1.17.6

Choose a tag to compare

@ilvalerione ilvalerione released this 15 Oct 13:58

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',
        );
    }
}