Find answers from the community

Home
Members
goldenfuze
g
goldenfuze
Offline, last seen 3 months ago
Joined September 25, 2024
Whats the average response time from a retriever? just trying to figure out if mines slow or not.
Plain Text
retreiver = index.as_retriever()

nodes = retreiver.retrieve('Whats a good healthy recipe?')
7 comments
g
L
Hello i am currently trying to query based off of recipe documents in my database. I have vectorized each document through the Pinecone vector store, although when i query a request such as, "salmon" for recipes i get low scores for the matches although there are plenty of similar recipes in the database. I wonder how i can get higher relevance scores?
3 comments
L
g
How would I upsert nodes in parallel using VectorStoreIndex using pinecone, since i have so many nodes to upsert. I would of thought use_async would of upserted each batch in parallel but just upserts sequentially.
index = VectorStoreIndex(nodes, storage_context=storage_context,use_async=True,insert_batch_size=1500)
2 comments
g
L