Overview
The idea is practical and tested on real benchmarks; it meaningfully reduces hallucination but increases latency and API calls, and relies on the quality of retrieved evidence.
Citations144
Evidence Strength0.80
Confidence0.80
Risk Signals9
Trust Signals
Findings with numeric evidence: 4/4
Findings with evidence refs: 4/4
Results with explicit delta: 5/5
Reproducibility
Status: Code + data available
Open source: Partial
At A Glance
Cost impact: 45%
Production readiness: 60%
Novelty: 55%
Why It Matters For Business
You can keep using a black-box LLM while reducing harmful hallucinations by adding retrieval, evidence consolidation, and automated feedback—improving factuality with modest engineering instead of costly fine-tuning.
Who Should Care
Summary TLDR
LLM-AUGMENTER is a plug-and-play system that wraps a frozen LLM (ChatGPT in experiments) with modules that (1) retrieve and consolidate external evidence, (2) prompt the LLM with that evidence, and (3) generate automated feedback to iteratively revise responses. On dialog and open-domain QA tests the system meaningfully reduces hallucinations (measured by Knowledge-F1 and F1) while keeping responses fluent. The design supports rule-based or learned policies and can use BM25/DPR/CORE retrievers and self-criticism or rule-based feedback.
Problem Statement
Large frozen LLMs often hallucinate and cannot access fresh or private knowledge. Fine-tuning is costly or impossible for black-box LLMs. The paper asks: can we wrap a fixed LLM with retrieval, evidence consolidation, and automated feedback to reduce hallucinations and improve factual grounding without changing model weights?
Main Contribution
Design of LLM-AUGMENTER: modular pipeline (Working Memory, Policy, Action Executor, Utility) to add retrieval, consolidation, and feedback around a frozen LLM.
Show empirically that retrieved and consolidated evidence plus automated feedback reduces hallucination and improves factual scores on two scenarios: information-seeking dialog and multi-hop Wiki QA.
Key Findings
Retrieving consolidated evidence raises knowledge grounding (KF1) by about +10 points on news dialog.
Automated feedback further improves grounding (KF1) by several points in dialog tasks.
Results
| Metric | Value | Baseline | Delta | Split / Dataset | Evidence | Evidence Ref |
|---|---|---|---|---|---|---|
| News Chat KF1 | ChatGPT 26.71 -> LLM-AUGMENTER BM25+feedback 36.41 | ChatGPT (closed-book) | +9.70 | News Chat (DSTC7) | Table 1 KF1 rows | Table 1 |
| Customer Service KF1 | ChatGPT 31.33 -> LLM-AUGMENTER BM25+feedback 37.41 | ChatGPT (closed-book) | +6.08 | Customer Service (DSTC11 validation) | Table 2 KF1 rows | Table 2 |
What To Try In 7 Days
Add a simple retriever (BM25) and include top-k passages in the prompt for a closed-book LLM.
Implement a rule-based utility that checks overlap with retrieved evidence (KF1) and rejects answers below threshold.
Create a simple template feedback message to re-prompt the LLM when grounding is missing.
Agent Features
Memory
Planning
Tool Use
Frameworks
Is Agentic
Yes
Architectures
Optimization Features
System Optimization
Training Optimization
Inference Optimization
Reproducibility
Code URLs
Data URLs
Risks & Boundaries
Limitations
Extra LLM queries (often two prompts) increase latency and API cost.
Performance depends on retrieval coverage; if evidence is missing the system can still hallucinate.
When Not To Use
Applications that require single-round ultra-low latency or minimal API cost.
Scenarios where reliable external knowledge sources are unavailable or untrusted.
Failure Modes
No supporting evidence retrieved leads to persistent hallucination or abstention.
Utility functions can be biased or misaligned and may accept plausible but incorrect answers.

