How to search in embeddings #136
Answered
by
pb30
EliasPereirah
asked this question in
Q&A
-
Sorry I'm starting on this. |
Beta Was this translation helpful? Give feedback.
Answered by
pb30
Jun 6, 2023
Replies: 1 comment 1 reply
-
You're responsible for storing them in your own vector database (Pinecone, Weaviate, ChromaDB, Postgres with pg_vector, etc), along with the some form of document IDs or the raw text content of the chunk. OpenAI (and this library) doesn't handle any of the storage/searching of embeddings, just the generation. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
EliasPereirah
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're responsible for storing them in your own vector database (Pinecone, Weaviate, ChromaDB, Postgres with pg_vector, etc), along with the some form of document IDs or the raw text content of the chunk. OpenAI (and this library) doesn't handle any of the storage/searching of embeddings, just the generation.