-
Notifications
You must be signed in to change notification settings - Fork 481
feat: [DocAgent] Add Dynamic RAG #2105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
priyansh4320
wants to merge
19
commits into
ag2ai:main
Choose a base branch
from
priyansh4320:Dynamic-rag-on-DocAgent-ocr-support
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: [DocAgent] Add Dynamic RAG #2105
priyansh4320
wants to merge
19
commits into
ag2ai:main
from
priyansh4320:Dynamic-rag-on-DocAgent-ocr-support
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f1daca9
to
f835f50
Compare
94ec5b6
to
e082739
Compare
e082739
to
444b5fb
Compare
@bassilkhilo-ag2 can you please try this out |
3beebd3
to
1ba34fa
Compare
1ba34fa
to
576606a
Compare
576606a
to
ef109ad
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Depends on #2097
Why are these changes needed?
Extending DocAgent Beyond Vector RAG to Graph RAG
The current DocAgent implementation in ag2 relies solely on vector-based retrieval-augmented generation (RAG), which while effective for semantic similarity searches, has inherent limitations in capturing complex relational information and multi-hop reasoning scenarios. Vector RAG excels at finding documents with similar embeddings but struggles with queries that require understanding relationships between entities, temporal sequences, or hierarchical structures within the knowledge base. By extending DocAgent to support Graph RAG, you could leverage knowledge graphs to represent documents as interconnected nodes and relationships, enabling more sophisticated reasoning patterns like "find all research papers that cite work by authors who collaborated with X" or "trace the evolution of a concept across multiple related documents."
Summary
Updates on the design

Related issue number
#2113
Checks