I have a documents that has 50+ pages, and I want to the AI Agent to read through all of this to create similar document for me, what is the best way for this? I already tried chunking the extracted data and store it in a vector to be access by AI Agent but that still seems like the AI cant get all the data.
The best guaranteed way is to split the job into many parts.
You can make the AI read 3-5 pages at a time, for example. And make it output something each time.
It won’t remember the full document, no matter what you do. The AI context window is limited.
So you would have to build your new document little by little.
If my reply answers your question please remember to mark it as the solution.
2 Likes
thanks bro