diff --git a/examples/src/indexes/vector_stores/chroma/fromDocs.ts b/examples/src/indexes/vector_stores/chroma/fromDocs.ts index d8f99030c45b..472f2dcdad8f 100644 --- a/examples/src/indexes/vector_stores/chroma/fromDocs.ts +++ b/examples/src/indexes/vector_stores/chroma/fromDocs.ts @@ -12,7 +12,7 @@ const vectorStore = await Chroma.fromDocuments(docs, new OpenAIEmbeddings(), { url: "http://localhost:8000", // Optional, will default to this value collectionMetadata: { "hnsw:space": "cosine", - }, // Optional, can be used to specify the distance method of the embedding space https://docs.trychroma.com/usage-guide#changing-the-distance-function + }, // Optional, can be used to specify the distance method of the embedding space https://docs.trychroma.com/guides#changing-the-distance-function }); // Search for the most similar document