Replies: 3 comments 2 replies
-
@hwchase17 any thoughts on this ? |
Beta Was this translation helpful? Give feedback.
-
Well, it was long time ago and I forgot details. But I had to change something in the code to make add_documents work. My functions are: `` def update_collection(docs, collection_name): Regarding the first question: ``
`` I hope this will help. :-) |
Beta Was this translation helpful? Give feedback.
-
I have no idea. :-( |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I use Qdrant (in Docker) to store vectors. I am able to store vectors and ask questions based on them in one script. But I can't find any example in docs where the dataset is searched based on a previously created collection. How to load the data? I found that Pinecone has "from_existing_index" function, which probably does the thing. But Qdrant doesn't have such a function. I created my own solution using qdrant_client, but I would like to use Langchain to simplify the script. How to do it?
The second question refers to vector creation. I have a large corpus of documents. All examples I found import data to Qdrant in one go. Is it possible to add one document at a time? I tried "from_documents", but this function recreates an empty collection every time. How to add without recreating the collection?
Beta Was this translation helpful? Give feedback.
All reactions