How to create pinecone embeddings offline for use by online bot. #3754
-
Hello! All of the examples I see for question/answering over docs create their embeddings and then use the index(?) made during the process of creating those embeddings immediately (i.e. I want to populate my vector store from my home computer, and then I want my agent (which exists as a service online, available through an API) to have access to my vector store for question answering at all times. I can't follow the guides because I don't have a reference to the How can I do this? Am I implementing bad pattern here? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I have done something similar like this using chromadb
you would load the data and store it into your embeddings this way then what you can do is make an api which would feed this vector store but you want to load it and then feed it.
Now you can return |
Beta Was this translation helpful? Give feedback.
I have done something similar like this using chromadb
you might need to install
you would load the data and store it into your embeddings this way then what you can do is make an api which would feed this vector store but you want to load it and then feed it.