← All concepts

retrieval augmented generation

552 articles · 15 co-occurring · 10 contradictions · 136 briefs

Article explicitly identifies RAG as 'Foundational Pattern' and dedicates section 2.1 to it; discusses RAG vs fine-tuning decision framework.

@askalphaxiv: "SPADE: Self-Play in Adaptive Synthetic Executable Environments"

RAG typically retrieves from static corpora. SPADE suggests dynamically generating context (tasks/environments) is more effective than retrieving from fixed pools—a methodological contrast.

Don't let AI write the story

[direct] "AI writes in fragmented pieces that lack clear stories and meaning" — Article identifies fundamental limitation: AI-generated content lacks narrative coherence without human structural guidance

@RishiUvaach: After building and scaling real agent systems in production, the same archite...

Author explicitly argues RAG is over-focused on; real production complexity lives elsewhere. This represents a practitioner reality check against the current industry hype cycle.

@florenth0x: Someone inside Moonshot leaked how they actually run Kimi K3 in production — ...

RAG typically retrieves external context; this pattern generates context through self-refinement iterations—different mechanism, similar goal of improving output quality

@samzliu: It's absolutely crazy how meaningless the most popular memory benchmarks larg...

Article claims RAG vs vector search vs knowledge graphs perform identically on benchmarks, contradicting the premise that retrieval algorithm selection is the key differentiator

@rohanpaul_ai: Retrieving the right memory can still make an agent worse.

Paper shows naive RAG (retrieve + inject) can harm performance. The issue is identical: retrieved documents may not apply to current query intent. Suggests RAG needs a reconstruction/filtering layer between retrieval and generation.

@beamnxw: This paper is f*cking outstanding

Paper explicitly positions active memory engineering as superior alternative to passive RAG, showing RAG's limitation: 'Most agent architectures passively dump unorganized text chunks'

@samzliu: Lots of good things in this post:

Author explicitly rejects complex RAG in favor of 'agents + keyword search.' This suggests RAG complexity may be overkill for personal knowledge scenarios.

@charlespacker: As a team we primarily drive the Letta Code harness for SWE work, but occasio...

[INFERRED] "Claude Code TUI seems to be getting buggier over time" — Observational evidence that Claude Code tool quality is degrading over time, contrasting with stable performance of alternative (Codex). Raises concerns about reliability in production SWE workflows.

@NoahZiems: What happens if/when the model providers do the same with other tasks that di...

[INFERRED] "mythos will be bad ON PURPOSE on ai "frontier llm research" tasks, this is very very sad for the research community" — Article claims model providers intentionally degrade performance on research tasks to protect competitive interests, potentially compromising research integrity

2026-W35
2325
2026-W34
1299
2026-W33
1929
2026-W32
1595
2026-W31
1582
2026-W30
1886
2026-W29
2180
2026-W28
2144
2026-W27
1507
2026-W26
899
2026-W25
2083
2026-W24
2049

Article names RAG as Layer 3, lists vector databases (Pinecone, Milvus, FAISS), docs, codebases as knowledge sources

Article explicitly identifies RAG as 'Foundational Pattern' and dedicates section 2.1 to it; discusses RAG vs fine-tuning decision framework.

retrieval-augmented generation (RAG), memory systems and tool-integrated reasoning, and multi-agent systems" — RAG explicitly identified as one of the sophisticated architectural implementations integ

Claude Context implements RAG specifically for codebases: semantic indexing + dynamic retrieval injected into context.

Paper explicitly tests how retrieval method (sparse, dense, hybrid, graph-based) affects context quality and downstream LLM performance in RAG systems.

RAG (Retrieval-Augmented Generation) — RAG improves generative AI by retrieving relevant external data from open sources (like the internet) or closed systems (like internal databases). This grounds A

Detailed explanation of RAG as solution to contextual distraction, treating conversation history as searchable database

It's RAG on steroids... ADAPTIVE RETRIEVAL: The AI literally asks itself 'Do I need to Google this, or do I already know?'" — The article explicitly positions Deep Research as an evolution of RAG, add

Knowledge Integration (RAG): Retrieving the right document chunks from a vector database at the right time, without overloading the context window." — Article explicitly identifies RAG as a practical

Author identifies RAG as incomplete and proposes the missing context layer that RAG systems need

Effective context engineering here relies on retrieval-augmented techniques like using vector search, RAG, or other filtering methods to inject only the most relevant facts, tools for the current task

Article directly addresses RAG implementation failure and solution

Article directly addresses RAG failure modes and improvement patterns

RA-RFT is explicitly positioned as an improvement to traditional RAG retrieval strategies for reasoning tasks

Chapter 6 covers RAG, which is a core context engineering pattern for managing external information retrieval

GraphRAG is a specific RAG implementation strategy

I am building a full fledged RLM harness in rust using fast-rlm" — Article describes implementation of RLM (Retrieval-based Language Model) harness, which is a concrete example of retrieval-augmented-

RAG is the explicit focus; 'Reliable RAG' is a refinement of standard RAG patterns

individual developers at Anthropic migrated 10 code packages consisting of tens to hundreds of thousands of lines of code using Claude Fable 5, Claude Opus 4.8, and dynamic workflows." — Concrete demo

Retrieval is listed as core CE technique for determining what information enters the context window

A number of frameworks and methods have developed around scaling the establishment of accurate context at inference…RAG and others." — Article explicitly identifies RAG as a key framework within Conte

Retrieval with relevance thresholds and reranking are core RAG optimization strategies; article provides specific production patterns.

Article uses RAG as primary technique for managing dynamic context. Concrete code example of embedding → retrieve → assemble → generate pattern.

Database retrieval tools are the RAG mechanism for grounding agent responses in proprietary data

Article explicitly mentions RAG systems as a primary application domain for context engineering. RAG is a core pattern for managing what enters the context window.

Add a retrieval step so the few-shot examples are brought in dynamically based on the question - this boosts performance by ensuring relevant context for each input" — Article provides concrete exampl

RAG optimization is one of six primary topics. RAG is a core context engineering pattern for managing external knowledge in context.

They create tests to see how AI handles real-world challenges" — Andon Labs explicitly develops testing frameworks for agent evaluation in practical scenarios

The entire architecture is RAG—the agent queries structured data and retrieves relevant context before generation. The schema design is optimizing the 'retrieval' component.

[DIRECT] "The dominant pattern for giving LLMs access to your organization's private knowledge. Instead of retraining a model, you retrieve relevant documents at query time and include them in the con

RAG architecture explicitly called out as context engineering component

Retrieval enters the chat. Vector DBs, chunking, embeddings. Slightly more grounded, still static. Context ≠ adaptive. Context ≠ engineered." — Directly discusses RAG's technical components (Vector DB

Claude Context is RAG applied to codebases: the codebase is the 'knowledge base', semantic search is the retrieval mechanism, and Claude is the generation layer. Hybrid BM25+vector is a RAG-specific r

GBrain is explicitly a retrieval system integrated with agents; the pattern shows RAG as a component that must flow through agent decision-making.

Survey explicitly identifies RAG as one of three sophisticated implementations integrating foundational context components. RAG is a primary pattern for context retrieval + processing.

RAG is explicitly discussed as one of two primary architectural approaches

Article explicitly lists RAG systems as part of the 'data plane' of context engineering, identifying retrieval strategy as one of three core pillars.

RAG is explicitly mentioned as one of the core mechanisms within context engineering, representing a specific implementation pattern for information selection and injection.

The entire article is about improving RAG systems by better managing document context upstream

Article positions context engineering as the natural evolution of RAG, showing how retrieval becomes one tool in an agentic loop rather than a pipeline stage.

Article explicitly positions CE as 'far beyond traditional RAG' to include hybrid retrieval, knowledge graphs, and dynamic assembly—showing evolution of RAG concept

Episode explicitly discusses RAG and the importance of separating retrieval from generation as a production pattern

when retrieval breaks down, the language model doesn't compensate. It generates with plausible-sounding content that has no grounding in fact." — Research shows retrieval quality directly determines R

Hybrid search, combining lexical precision with semantic understanding, is the most powerful way to surface that context." — Hybrid search (lexical + semantic) is presented as the solution for surfaci

RAG is explicitly presented as a concrete implementation pattern for solving context bottleneck through retrieval precision

PageIndex is a new RAG approach, directly exemplifies alternative retrieval strategies

Agentic RAG upgrades the traditional "retrieve-generate" single-pass pipeline into an intelligent agent architecture with planning, reflection, and self-correction capabilities, improving the faithful

Article discusses RAG as primary application domain where context poisoning occurs; retrieval layer is attack surface

RAG is explicitly discussed as 'the single most common AI Engineering project at every company in 2026.' RAG is a specific instantiation of the FTI chassis where feature pipeline = retrieval system, t

58 pages of distilled methods and system designs make this a must-read for anyone working with LLM pipelines, RAG systems, memory architectures, or multi-agent frameworks." — Article explicitly identi

query this concept
$ db.articles("retrieval-augmented-generation")
$ db.cooccurrence("retrieval-augmented-generation")
$ db.contradictions("retrieval-augmented-generation")