Overview
Useful practically as a system design map: it organizes patterns and trade-offs for planners, tool use, memory, and multi-agent pipelines, but it is a literature synthesis rather than new experimental proof—expect guidance rather than turnkey recipes.
Citations0
Evidence Strength0.75
Confidence0.78
Risk Signals10
Trust Signals
Findings with numeric evidence: 2/4
Findings with evidence refs: 4/4
Results with explicit delta: 1/1
Reproducibility
Status: Partial assets available
Open source: Partial
At A Glance
Cost impact: 70%
Production readiness: 60%
Novelty: 60%
Why It Matters For Business
Treating LLMs as agents unlocks real-world automation: models can call tools, check work, store experience, and coordinate—cutting manual glue code and raising automation value across search, coding, science, and operations.
Who Should Care
Summary TLDR
This survey defines "agentic reasoning": treating LLMs as agents that plan, act (call tools), and learn over time. It organizes work into three layers—foundational (planning, tool use, search), self-evolving (feedback and memory), and collective (multi-agent coordination)—and two optimization modes: in-context (no parameter change) and post-training (SFT/RL). The paper reviews representative systems, benchmarks, and real applications (math, science, robotics, healthcare, web agents), highlights practical patterns and system designs, and outlines open problems such as long-horizon credit assignment, world-models, scalable multi-agent training, personalization, and governance.
Problem Statement
LLMs perform well on closed, static reasoning tasks but fail to act, adapt, or improve in open-ended, dynamic environments. We need methods that turn passive text generation into iterative decision loops where models plan, call tools, use memory, integrate feedback, and coordinate across agents.
Main Contribution
Formalize "Agentic Reasoning" as three layers: foundational, self-evolving, collective.
Systematic review of methods for planning, tool use, search, memory, and feedback.
Key Findings
Agentic systems center reasoning as an explicit think-then-act loop.
Large-scale supervised fine-tuning has been used to teach tool use at scale.
Results
| Metric | Value | Baseline | Delta | Split / Dataset | Evidence | Evidence Ref |
|---|---|---|---|---|---|---|
| Accuracy | ≈35% relative improvement (reported for MIRIX) | — | 35% | multimodal QA (MIRIX report) | Sec.5.3 Multi-agent memory (MIRIX reference) | MIRIX [328] |
What To Try In 7 Days
Prototype a plan-then-act prompt that separates 'thought' and 'action' for a common task.
Add a simple validator (e.g., unit test) to loop until a passing result for code generation.
Attach a small workflow memory (saved snippets) to reuse prior successful steps in repeated tasks.
Agent Features
Memory
Planning
Tool Use
Frameworks
Is Agentic
Yes
Architectures
Collaboration
Optimization Features
Token Efficiency
Infra Optimization
Model Optimization
System Optimization
Training Optimization
Inference Optimization
Reproducibility
Risks & Boundaries
Limitations
Survey: synthesizes many works but does not provide unified empirical comparisons.
Benchmarks vary in scope and the field lacks standard long-horizon evaluation protocols.
When Not To Use
For simple one-shot classification or short prompt tasks where no external action is needed.
Where strict privacy/regulatory constraints forbid external tool calls and shared memories.
Failure Modes
Compounding errors in long-horizon plans leading to derailment.
Hallucinated tool calls or incorrect parameterization when tool docs are insufficient.

