POST 1 of 5 MorningRAGConcept
GraphRAG models entities + relationships
Standard RAG returns chunks. Some questions need a graph. GraphRAG flow (Microsoft popularised): 1. Extract entities + relationships from chunks (LLM extraction) 2. Build a knowledge graph (nodes = entities, edges = relationships) 3. Cluster the graph; summarise each cluster 4. Retrieve via the graph (entity + neighbourhood) plus chunks Wins on: 'tell me about X and everyone connected to X', 'summarise themes across the corpus', 'who else does Y'. Loses on: 'cost more compute upfront, often 5-10x indexing time'. Not free.
#RAG#LLM#AI#VectorSearch#100DaysOfCode#GraphRAG