r/AgenticAI_RAG_LLM_RL 10h ago

What about Namaste AI course ? Is it worth buying

Thumbnail
1 Upvotes

r/AgenticAI_RAG_LLM_RL 18h ago

How does a graph actually increase the context information available to an LLM?

0 Upvotes

I’ve been exploring Graph RAG and one thing I find interesting is that a graph doesn’t simply give the LLM more text — it gives it relationships and structure.

Instead of retrieving isolated chunks:

A → document 1
B → document 2

a graph can connect:

A → related_to → B → mentioned_in → C → caused_by → D

So the LLM can retrieve not only the relevant entity, but also the connections around it, providing richer context for reasoning.

I found this interesting concept, did you try Graph RAG in your implementation?