Adding documents to Vector store failing with Authentication Error
I am trying to follow the tutorial given in this link , to visualise the RAG data using renumics-spotlight
package.
Error when using Chroma with Langchain and OpenAI embeddings
I am trying to replicate an online tutorial from Deeplearning.ai. WHen I try to create a vector db with Chroma I run in the following error:
Difference b/w “from langchain_community.vectorstores import Chroma” and “from langchain_chroma import Chroma”
There are two ways to import “Chroma” from langchain as below.
https://api.python.langchain.com/en/latest/vectorstores/langchain_community.vectorstores.chroma.Chroma.html
and
https://api.python.langchain.com/en/latest/vectorstores/langchain_chroma.vectorstores.Chroma.html#langchain_chroma.vectorstores.Chroma
Methods in both sites are completely the same. I have already used langchain_community for embedding, so I do not want to install extra packages such as “langchain_chroma”.