diff --git a/notebooks/chroma-indexing-and-rag-examples.ipynb b/notebooks/chroma-indexing-and-rag-examples.ipynb index 6944a52..6ad01bb 100644 --- a/notebooks/chroma-indexing-and-rag-examples.ipynb +++ b/notebooks/chroma-indexing-and-rag-examples.ipynb @@ -99,7 +99,7 @@ "from haystack.components.converters import TextFileToDocument\n", "from haystack.components.writers import DocumentWriter\n", "\n", - "from chroma_haystack import ChromaDocumentStore\n", + "from haystack_integrations.document_stores.chroma import ChromaDocumentStore\n", "\n", "file_paths = [\"data\" / Path(name) for name in os.listdir(\"data\")]\n", "\n", @@ -153,7 +153,7 @@ { "cell_type": "code", "source": [ - "from chroma_haystack.retriever import ChromaQueryRetriever\n", + "from haystack_integrations.components.retrievers.chroma import ChromaQueryRetriever\n", "from haystack.components.generators import HuggingFaceTGIGenerator\n", "from haystack.components.builders import PromptBuilder\n", "\n", @@ -213,4 +213,4 @@ "outputs": [] } ] -} \ No newline at end of file +}