Total indexing cost by corpus size
Same chunk size, prompt overhead and overhead share as above, swept across corpus size — this is how a "$33 test corpus" becomes a "$3,300 production corpus." The right-hand column shows the same sweep at a budget-tier extraction model ($0.15 / $0.60 per 1M) to show how much of the bill is model choice rather than corpus size.
| Corpus size | Chunks | Extraction cost | Total indexing cost | At budget-tier model |
|---|
Budget-tier column re-runs the same chunk math at $0.15 input / $0.60 output per 1M tokens — a cheaper extraction model cuts the bill roughly in proportion to the price drop, not the corpus size.
One-time indexing vs. recurring query cost
Indexing happens once per corpus version. Query cost happens on every single question, forever — GraphRAG adds the row below on top of it, not instead of it.
| Cost | When it's paid | Modeled by |
|---|---|---|
| GraphRAG indexing (entity/relationship extraction) | Once per corpus version — re-run only when source docs change | This calculator |
| Standard RAG query (retrieval + generation) | Recurring — every question, every user, forever | RAG Cost Calculator |
| GraphRAG query (graph traversal + generation) | Recurring, same as standard RAG query cost — paid in addition to indexing | RAG Chatbot Cost Calculator |
How this connects to other RAG tools
This page only prices the indexing half of GraphRAG — the one-time LLM pass that turns your documents into a knowledge graph. It doesn't replace the tools that price everything downstream of that. Once the graph exists, every question against it still costs retrieval plus generation, same as any other RAG system — price that recurring side on the RAG Cost Calculator or, for a chat-style interface with conversation history, the RAG Chatbot Cost Calculator. If you're still deciding whether a knowledge graph is the right architecture at all versus fine-tuning a model on your corpus instead, RAG vs Fine-Tuning lays out that trade-off. And because the underlying vectors — for chunk embeddings and community summaries — still need somewhere to live, check what that storage costs on the Vector Database Cost Calculator.