Find answers from the community

Updated 2 months ago

Hi all I am trying to load a document

Hi all I am trying to load a document into a chroma db vector store locally. It’s a 400 page pdf file, it embedded fine but when I go to persist it I am hitting the chroma db maximum batch size. Is there a way around this? Same doc with langchain was able to persist fine
L
1 comment
hmm I guess the chroma vector store implementation hasn't implemented batching yet

You can set batching at the top-level though

VectorStoreIndex(..., insert_batch_size=1024) or something like that
Add a reply
Sign up and join the conversation on Discord