Update chroma.adoc (#945)

There is a parameter missing. Would avoid confusion
This commit is contained in:
TimJ0212
2024-07-02 16:56:55 +02:00
committed by GitHub
parent f5608be65d
commit e889fb48ba

View File

@@ -229,7 +229,7 @@ Integrate with OpenAI's embeddings by adding the Spring Boot OpenAI starter to y
----
@Bean
public VectorStore chromaVectorStore(EmbeddingModel embeddingModel, ChromaApi chromaApi) {
return new ChromaVectorStore(embeddingModel, chromaApi, "TestCollection");
return new ChromaVectorStore(embeddingModel, chromaApi, "TestCollection", false);
}
----