Find answers from the community

Updated 3 months ago

I'm trying to set up a system that can

I'm trying to set up a system that can store data in a vector store and can subsequently perform both Q&A and summarization on the stored data. Could someone point me to any documentation, please?

I came across this - https://docs.llamaindex.ai/en/stable/examples/query_engine/JointQASummary.html, but it's not clear how to implement this with a vector store.
L
1 comment
For summarization, you can't really use only a vector store
a) most vector stores don't have a "get all" option. Instead, you'd have to set a really high top k...
b) .. which also destroys the order of nodes, which is also helpful for summarization
Add a reply
Sign up and join the conversation on Discord