Parallel lane view of ingestion, retrieval, augmentation, generation, and scoring behavior
1. Three direct retrievers
vanilla, hybrid, and contextual share the same answer_from_context generation path.
Atlas builds the profile base and graph; the showcase derives only contextual chunks.
2. Graph and agent paths
graph-rag delegates query answering to LightRAG hybrid mode.
agentic-rag loops over vector search and LightRAG tools, then returns a trace and final answer.
lazy-graph-rag builds and caches a deterministic concept graph on first use, then expands within query budgets.
3. Adaptive workflow
n8n-adaptive-rag is intentionally a workflow bridge, not a new retriever.
The Atlas-seeded, showcase-owned n8n graph classifies the query and calls a selected approach.
Each LiteLLM model alias maps to /rag/<approach>/v1 inside the Atlas backend container; Open WebUI and compare/run_matrix.py invoke those routes through LiteLLM /v1/chat/completions.