Best llama index tool or implementation for multi document comparison #16323
Replies: 3 comments 1 reply
-
The best tool for your needs is the Multidoc Autoretrieval Pack. It supports:
Here's a brief example of how you might use it: response = pack.run("Tell me about some issues on 12/11")
print(str(response))
response = pack.run("Tell me about some open issues related to agents")
print(str(response)) This setup is ideal for structured and efficient document comparison tasks [1]. |
Beta Was this translation helpful? Give feedback.
-
No I dont want to use a pack but what to implement this from scratch so I understand it well using llama index. Can you suggest how? |
Beta Was this translation helpful? Give feedback.
-
Hello Sumit, |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am trying to setup an example tat requires me to compare multiple documents with each other. I am looking for opinions on what is the best way to do this using llama index.
Some of the considerations are:
Do you have suggestions on what examples I should look at and how to go about doing this?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions