REVIEW 3 major objections 5 minor 58 references
A graph of past actions, scored by temporal-difference learning, steers LLM agents' best-of-N search toward proven steps and away from known failures, beating vanilla inference scaling by 20.81% in success rate across four benchmarks.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-01 07:42 UTC pith:5S2XCY5K
load-bearing objection Plausible method, but the headline gain is confounded by within-task warm-up and the theory is circular. the 3 major comments →
Bridging Inference-Time Scaling and Episodic Memory with Action-Centric Graphs
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
On its own terms, the paper's discovery is that an action-centric graph with dual-stream TD values can act as a persistent surrogate value function for agent inference scaling. Rather than storing raw trajectories for the LLM to re-read, GAMER merges trajectories into a graph where nodes are unique actions, edges are sequential dependencies, and Q+ and Q− values estimate expected success and risk of failure respectively. During inference, the policy receives the historically best trajectory, the top-K successors by Q+, and the top-K successors by most negative Q−, shifting the LLM's probability mass toward proven actions and away from proven dead ends. The theoretical analysis argues that th
What carries the argument
The central mechanism is the Action-Centric Graph, a directed graph whose nodes are distinct actions and whose edges record which action followed which in historical trajectories. On this graph the paper runs dual-stream temporal-difference learning: Q+ accumulates discounted positive reward as expected success, while Q− accumulates a thresholded negative reward as risk of failure, each updated independently with optimistic max or pessimistic min targets over successors. These two value streams generate the suggested-action list and avoid-action list that are injected into the LLM prompt alongside the historically optimal trajectory. The graph converts past logs into a compact, queryable val
Load-bearing premise
The load-bearing premise is that the first 32 trajectories of each test task are a fair warm-up memory for the remaining 32 of the same task, so the reported gain is episodic-memory transfer rather than in-task self-adaptation; the theoretical guarantee additionally assumes the prompt guidance never shifts probability mass from good actions to bad ones, and the paper's Limitations section concedes that too little warm-up can make the method perform below the vanilla baseline.
What would settle it
Re-run Table 1 with a strict holdout protocol: warm-up trajectories come only from earlier tasks, never from the task being evaluated, and every baseline receives the same warm-up data; if GAMER's success-rate advantage over vanilla narrows to non-significance, the transfer claim fails. A cheaper probe: replace the learned Q+ values with random top-K suggestions from the same graph and check whether performance holds, which would indicate the TD value-learning machinery is not carrying the argument.
If this is right
- An agent can spend the same best-of-N budget and get a higher expected maximum reward, because the sampling distribution is biased toward historically successful action sequences.
- Token cost stays close to the vanilla baseline (about 1.41M vs 1.17M average tokens per inference for the two open backends), and memory construction and TD updates cost well under a second and a few seconds per task on CPU, because no extra LLM calls are needed for memory.
- Across all four LLM backbones, the gains are consistent, with the largest relative success-rate gain on the embodied household benchmark, where the paper reports about a 53% relative improvement over vanilla.
- The scaling curves keep rising at the steepest slope even at N=64, so the paper argues that further inference compute would widen rather than close the gap.
- The theoretical guarantee implies that a memory-guided policy needs no more samples than the base policy to reach a target reward with fixed confidence.
Where Pith is reading between the lines
- Editorial inference: because warm-up trajectories come from the first 32 episodes of the same task, a large part of the measured gain may be in-task self-adaptation rather than transferable episodic memory; a cleaner test holds out entire tasks and uses memory only from previously seen tasks.
- Editorial inference: graph nodes are literal action strings, so the method may not transfer across tasks whose equivalent actions are phrased differently; an embedding-based action-normalization step could extend it to open-vocabulary domains.
- Editorial inference: the avoidance mechanism is a soft barrier, and with small warm-up sets it can lock the agent into a narrow suboptimal region, consistent with the paper's own limitation statement; a simple fix worth testing is an exploration bonus for low-count nodes during value updates.
- Editorial inference: comparing GAMER against a memory prompt that injects only the best trajectory and top-K positive actions, without learned Q-values, would isolate how much of the gain actually comes from temporal-difference value learning versus simple retrieval.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes GAMER, a memory mechanism for LLM agents that represents past trajectories as an action-centric graph and learns dual Q+ and Q- values via temporal-difference updates. At inference, it injects top-K suggested actions and warned actions into the LLM prompt, aiming to improve best-of-N inference scaling. The main empirical claim is a 20.81% relative success-rate improvement and a 6.17% progress-rate improvement over a vanilla best-of-N baseline, averaged over four benchmarks and four LLMs. The paper also offers a theoretical argument (Theorems 4.2 and 4.3) that memory-guided sampling first-order stochastically dominates base sampling, with proofs in Appendix B.
Significance. If the empirical result is protocol-clean, the dual-stream action-value memory is a practically useful and token-cheap way to reduce redundant search in long-horizon agentic tasks. The benchmark coverage (AlfWorld, ScienceWorld, PDDL, Tool-Query), the four LLM backbones, and the token/time measurements are strengths. However, the current theoretical section is tautological, and the central experiment appears to rely on same-task warm-up rather than cross-task episodic memory transfer, so the claimed transfer value and the 20.81% headline are not yet established. No code is released, which further limits reproducibility of the graph-construction and prompting details.
major comments (3)
- [§5 Setups; §3.3] The evaluation protocol tests same-task warm-up, not cross-task episodic transfer. The text states "the first 32 trajectories serve as warm-up knowledge, while our method is applied to the remaining 32 trajectories," and the prompt template in §3.3 says "This is the best historical trajectory for the current task you had." The paper does not state that the vanilla baseline receives the same 32 warm-up trajectories. If vanilla is a stateless best-of-64, the +20.81% relative success-rate gain measures in-task self-adaptation (32 prior attempts on the exact same task before the measured 32 attempts), not the "structurally similar previously solved task" reuse promised in §1. Add a warm-up control for vanilla and the other baselines, or evaluate GAMER with memory built from a disjoint set of tasks.
- [§4, Assumption 4.1; Appendix B.1] The theoretical guarantee is circular. Assumption 4.1 already asserts that memory guidance moves probability mass only from the failure set to the success set with no downward movement; Appendix B.1 then assumes Δp(x)≤0 below ϵ and Δp(x)≥0 above ϵ, which is exactly first-order stochastic dominance. The proof integrates this assumed shift and never uses the definitions of Q+ and Q−, the TD updates, or the thresholded reward; the phrase "ϵ-consistent" is undefined. Theorem 4.3 is a standard consequence of FSD and would hold for any memory policy that dominates the base policy. Replace this section with a non-tautological condition linking the learned value estimates to the sampling shift, or remove the theoretical claim.
- [Abstract; §1 Contributions] The headline numbers are inconsistent: the Abstract and Table 1 report +20.81%/+6.17% success/progress over vanilla, while §1 states the improvement is 15.4%/5.47%. Since these numbers are the paper's central quantitative claim, the discrepancy must be resolved and the correct values used consistently.
minor comments (5)
- [Table 3] The S/A/T abbreviations are confusing: the caption lists S, A, T for Suggested Action, Action to Avoid, and Trajectory, but the rows use +A, +S, +T and the text discusses the components in a different order. Align the labels and the textual description.
- [Figure 4] The two y-axes are not labeled in the figure itself; the caption should identify which axis corresponds to SR and which to PR.
- [Figure 4(c)] The term "warm-up episodes" is used without definition; clarify whether these are per-task trajectories and whether the baselines are given the same warm-up data.
- [Appendix C.2] The Reflexion implementation note says "for each action, we will use the same LLM to generate feedback," which is an unusual adaptation of Reflexion. Please clarify how this differs from the original episodic-reflection setup and whether it affects the comparison.
- [General] No code or data release is indicated. For a method whose value depends on the exact graph construction, TD update schedule, and prompt template, providing the code would materially improve reproducibility.
Circularity Check
Theoretical FSD guarantee is Assumption 4.1 restated; empirical central claim has independent content but is subject to a same-task warm-up caveat.
specific steps
-
self definitional
[Section 4 (Assumption 4.1, Theorem 4.2) and Appendix B.1]
"Assumption 4.1 (Monotonic Probability Re-allocation). ... We assume T reallocates probability mass from the failure set Aavoid (where rewards r < ε) to the success set Asuggest (where rewards r > ε′), such that for any reward threshold x, the cumulative mass moved from [x,∞) to (−∞,x) is zero. [B.1:] According to the Dual-Stream strategy, we define a pivot reward threshold ε. The transformation ensures: • For x < ε (Failure regions), Δp(x) ≤ 0. • For x > ε (Success regions), Δp(x) ≥ 0."
Assumption 4.1 already states that no probability mass moves from high-reward to low-reward outcomes for any threshold x, which is exactly the definition of first-order stochastic dominance. The proof of Theorem 4.2 then simply assumes the same sign pattern on Δp, integrates to obtain Fmem ≤ Fbase, and concludes Xmem ⪰1 Xbase. It never uses the ε-consistency of Q+/Q− or the TD update rule, so the claimed 'guarantee' is the input assumption restated rather than a derived consequence of the graph/TD mechanism. This makes the theoretical derivation self-definitional.
full rationale
The main empirical claim is not forced by the fitted values: the +20.81%/+6.17% result is a measured outcome on later trajectories, with ablations and per-backbone variation, so the central result has independent content beyond the circular theory. A non-circularity caveat is that §5 uses the first 32 trajectories of the same test task as warm-up and §3.3's prompt injects 'the best historical trajectory for the current task you had'; if vanilla received no comparable within-task warm-up, the headline gain conflates in-task self-adaptation with cross-task episodic memory transfer. That is an evaluation-fairness risk rather than a derivation-level circularity. The clear circular step is the theoretical FSD proof: Assumption 4.1 literally states the conclusion of Theorem 4.2, and Appendix B.1 re-asserts the same sign conditions on Δp without deriving them from Q+/Q− or the TD updates. No load-bearing self-citation was found; SFS and G-Memory citations are external baselines/implementations. Score 6 reflects one definitional 'prediction' in the theory while the empirical result remains partly independent, though warm-up dependent.
Axiom & Free-Parameter Ledger
free parameters (6)
- learning rate α =
0.05
- discount factor γ =
0.95
- TD iterations per task =
100
- suggestion/avoid count K =
3
- acceptability threshold ϵ_r =
not stated
- warm-up trajectory count =
32
axioms (5)
- domain assumption Long-horizon agent tasks are well modeled as POMDPs (Section 2).
- ad hoc to paper Assumption 4.1: memory guidance moves probability mass from failure actions to success actions with no downward mass movement.
- domain assumption Exact action strings can serve as reusable node identities across trajectories/tasks.
- domain assumption LLMs respond to injected suggestions and warnings by shifting their sampling distribution as intended.
- domain assumption TD updates converge with fixed α=0.05, γ=0.95, 100 iterations.
invented entities (2)
-
Action-Centric Graph
no independent evidence
-
Q+ and Q− dual value streams
no independent evidence
read the original abstract
Recent advancements in inference-time scaling have significantly unlocked the complex reasoning capabilities of Large Language Models~(LLMs). However, for agents, these approaches suffer from a critical inefficiency, operating in a stateless manner and engaging in redundant search processes. Existing memory mechanisms largely rely on the reasoning capabilities of LLMs, leading to prohibitive computational costs. In this paper, we propose a novel framework, \textit{GAMER}~(Graph-based Action-centric Memory with Episodic Reasoning), that bridges the gap between inference scaling and episodic memory. Our approach models historical reasoning as a dynamic \textit{Action-Centric Graph}. By decoupling the memory mechanism from LLMs, our method can save token/money usage by providing less memory context than memory mechanism baselines. To extract knowledge from the graph effectively, we use a dual-stream Temporal Difference learning mechanism to estimate the positive~(suggestion) and negative~(avoidance) value of action nodes based on past successes and failures. During the inference phase, this learned value function optimizes decision-making bi-directionally, so that positive values provide action suggestions, while negative values indicate high-risk actions. By performing efficient searches on the graph, our method significantly improves the efficiency of inference scaling. Experiments on multiple benchmarks demonstrate that \textit{GAMER} achieves superior performance by \textbf{20.81\%/6.17\%} for success/progress rate compared to vanilla baselines.
Figures
Reference graph
Works this paper leans on
-
[1]
Graph of thoughts: Solving elaborate problems with large language models
Maciej Besta, Nils Blach, Ales Kubicek, Robert Gerstenberger, Michal Podstawski, Lukas Gianinazzi, Joanna Gajda, Tomasz Lehmann, Hubert Niewiadomski, Piotr Nyczyk, et al. Graph of thoughts: Solving elaborate problems with large language models. InProceedings of the AAAI conference on artificial intelligence, volume 38, pages 17682–17690, 2024
2024
-
[2]
Bradley Brown, Jordan Juravsky, Ryan Ehrlich, Ronald Clark, Quoc V Le, Christopher Ré, and Azalia Mirhoseini. Large language monkeys: Scaling inference compute with repeated sampling.arXiv preprint arXiv:2407.21787, 2024
Pith/arXiv arXiv 2024
-
[3]
Grounding large language models in interactive environments with online reinforcement learning
Thomas Carta, Clément Romac, Thomas Wolf, Sylvain Lamprier, Olivier Sigaud, and Pierre- Yves Oudeyer. Grounding large language models in interactive environments with online reinforcement learning. In Andreas Krause, Emma Brunskill, Kyunghyun Cho, Barbara En- gelhardt, Sivan Sabato, and Jonathan Scarlett, editors,Proceedings of the 40th International Conf...
2023
-
[4]
Agentboard: An analytical evaluation board of multi-turn llm agents.Advances in neural information processing systems, 37:74325–74362, 2024
Ma Chang, Junlei Zhang, Zhihao Zhu, Cheng Yang, Yujiu Yang, Yaohui Jin, Zhenzhong Lan, Lingpeng Kong, and Junxian He. Agentboard: An analytical evaluation board of multi-turn llm agents.Advances in neural information processing systems, 37:74325–74362, 2024
2024
-
[5]
Prateek Chhikara, Dev Khant, Saket Aryan, Taranjeet Singh, and Deshraj Yadav. Mem0: Building production-ready ai agents with scalable long-term memory.arXiv preprint arXiv:2504.19413, 2025
Pith/arXiv arXiv 2025
-
[6]
The llama 3 herd of models.arXiv preprint arXiv:2407.21783, 2024
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. The llama 3 herd of models.arXiv preprint arXiv:2407.21783, 2024
Pith/arXiv arXiv 2024
-
[7]
Plan-and-act: Improving planning of agents for long-horizon tasks
Lutfi Eren Erdogan, Hiroki Furuta, Sehoon Kim, Nicholas Lee, Suhong Moon, Gopala Anu- manchipalli, Kurt Keutzer, and Amir Gholami. Plan-and-act: Improving planning of agents for long-horizon tasks. InForty-second International Conference on Machine Learning, 2025
2025
-
[8]
Large language models empowered agent-based modeling and simulation: A survey and perspectives.Humanities and Social Sciences Communications, 11(1):1–24, 2024
Chen Gao, Xiaochong Lan, Nian Li, Yuan Yuan, Jingtao Ding, Zhilun Zhou, Fengli Xu, and Yong Li. Large language models empowered agent-based modeling and simulation: A survey and perspectives.Humanities and Social Sciences Communications, 11(1):1–24, 2024
2024
-
[9]
Chengbo He, Bochao Zou, Xin Li, Jiansheng Chen, Junliang Xing, and Huimin Ma. Enhancing llm reasoning with multi-path collaborative reactive and reflection agents.arXiv preprint arXiv:2501.00430, 2024
Pith/arXiv arXiv 2024
-
[10]
Chenxu Hu, Jie Fu, Chenzhuang Du, Simian Luo, Junbo Zhao, and Hang Zhao. Chatdb: Augmenting llms with databases as their symbolic memory.arXiv preprint arXiv:2306.03901, 2023
Pith/arXiv arXiv 2023
-
[11]
Embodied agent interface: Benchmarking llms for embodied decision making
Manling Li, Shiyu Zhao, Qineng Wang, Kangrui Wang, Yu Zhou, Sanjana Srivastava, Cem Gokmen, Tony Lee, Li Erran Li, Ruohan Zhang, Weiyu Liu, Percy Liang, Li Fei-Fei, Jiayuan Mao, and Jiajun Wu. Embodied agent interface: Benchmarking llms for embodied decision making. In A. Globerson, L. Mackey, D. Belgrave, A. Fan, U. Paquet, J. Tomczak, and C. Zhang, 10 e...
2024
-
[12]
A survey on llm-based multi-agent systems: workflow, infrastructure, and challenges.Vicinagearth, 1(1):9, 2024
Xinyi Li, Sai Wang, Siqi Zeng, Yu Wu, and Yi Yang. A survey on llm-based multi-agent systems: workflow, infrastructure, and challenges.Vicinagearth, 1(1):9, 2024
2024
-
[13]
Zujie Liang, Feng Wei, Wujiang Xu, Lin Chen, Yuxi Qian, and Xinhui Wu. I-mcts: Enhancing agentic automl via introspective monte carlo tree search.arXiv preprint arXiv:2502.14693, 2025
arXiv 2025
-
[14]
SFS: Smarter code space search improves LLM inference scaling
Jonathan Light, Yue Wu, Yiyou Sun, Wenchao Yu, Yanchi Liu, Xujiang Zhao, Ziniu Hu, Haifeng Chen, and Wei Cheng. SFS: Smarter code space search improves LLM inference scaling. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[15]
Zhiwei Liu, Weiran Yao, Jianguo Zhang, Liangwei Yang, Zuxin Liu, Juntao Tan, Prafulla K Choubey, Tian Lan, Jason Wu, Huan Wang, et al. Agentlite: A lightweight library for building and advancing task-oriented llm agent system.arXiv preprint arXiv:2402.15538, 2024
Pith/arXiv arXiv 2024
-
[16]
Memochat: Tuning llms to use memos for consistent long-range open-domain conversation
Junru Lu, Siyu An, Mingbao Lin, Gabriele Pergola, Yulan He, Di Yin, Xing Sun, and Yunsheng Wu. Memochat: Tuning llms to use memos for consistent long-range open-domain conversation. arXiv preprint arXiv:2308.08239, 2023
Pith/arXiv arXiv 2023
-
[17]
A survey on vision- language-action models for embodied ai.arXiv preprint arXiv:2405.14093, 2024
Yueen Ma, Zixing Song, Yuzheng Zhuang, Jianye Hao, and Irwin King. A survey on vision- language-action models for embodied ai.arXiv preprint arXiv:2405.14093, 2024
Pith/arXiv arXiv 2024
-
[18]
Self-refine: Iterative refinement with self-feedback.Advances in Neural Information Processing Systems, 36:46534–46594, 2023
Aman Madaan, Niket Tandon, Prakhar Gupta, Skyler Hallinan, Luyu Gao, Sarah Wiegreffe, Uri Alon, Nouha Dziri, Shrimai Prabhumoye, Yiming Yang, et al. Self-refine: Iterative refinement with self-feedback.Advances in Neural Information Processing Systems, 36:46534–46594, 2023
2023
-
[19]
RET-LLM: Towards a general read-write memory for large language models
Ali Modarressi, Ayyoob Imani, Mohsen Fayyaz, and Hinrich Schuetze. RET-LLM: Towards a general read-write memory for large language models. InICLR 2024 Workshop: How Far Are We From AGI, 2024
2024
-
[20]
OpenAI. Chatgpt. 2022
2022
-
[21]
Gpt-4o mini: advancing cost-efficient intelligence
OpenAI. Gpt-4o mini: advancing cost-efficient intelligence. https://openai.com/index/ gpt-4o-mini-advancing-\cost-efficient-intelligence/, 2024. Accessed: July 31, 2026
2024
-
[22]
Siru Ouyang, Jun Yan, I Hsu, Yanfei Chen, Ke Jiang, Zifeng Wang, Rujun Han, Long T Le, Samira Daruki, Xiangru Tang, et al. Reasoningbank: Scaling agent self-evolving with reasoning memory.arXiv preprint arXiv:2509.25140, 2025
Pith/arXiv arXiv 2025
-
[23]
Memgpt: Towards llms as operating systems.arXiv preprint arXiv:2310.08560, 2023
Charles Packer, Sarah Wooders, Kevin Lin, Vivian Fang, Shishir G Patil, Ion Stoica, and Joseph E Gonzalez. Memgpt: Towards llms as operating systems.arXiv preprint arXiv:2310.08560, 2023
Pith/arXiv arXiv 2023
-
[24]
Bernstein
Joon Sung Park, Joseph O’Brien, Carrie Jun Cai, Meredith Ringel Morris, Percy Liang, and Michael S. Bernstein. Generative agents: Interactive simulacra of human behavior. InProceed- ings of the 36th Annual ACM Symposium on User Interface Software and Technology, UIST ’23, New York, NY , USA, 2023. Association for Computing Machinery
2023
-
[25]
Mutual reasoning makes smaller LLMs stronger problem-solver
Zhenting Qi, Mingyuan MA, Jiahang Xu, Li Lyna Zhang, Fan Yang, and Mao Yang. Mutual reasoning makes smaller LLMs stronger problem-solver. InThe Thirteenth International Conference on Learning Representations, 2025
2025
-
[26]
Branch-solve-merge improves large language model evaluation and generation
Swarnadeep Saha, Omer Levy, Asli Celikyilmaz, Mohit Bansal, Jason Weston, and Xian Li. Branch-solve-merge improves large language model evaluation and generation. In Kevin Duh, Helena Gomez, and Steven Bethard, editors,Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technolo...
2024
-
[27]
MemInsight: Autonomous memory augmentation for LLM agents
Rana Salama, Jason Cai, Michelle Yuan, Anna Currey, Monica Sunkara, Yi Zhang, and Yassine Benajiba. MemInsight: Autonomous memory augmentation for LLM agents. In Christos Christodoulopoulos, Tanmoy Chakraborty, Carolyn Rose, and Violet Peng, editors,Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing, pages 33136– 33152,...
2025
-
[28]
Meminsight: Autonomous memory augmentation for llm agents.arXiv preprint arXiv:2503.21760, 2025
Rana Salama, Jason Cai, Michelle Yuan, Anna Currey, Monica Sunkara, Yi Zhang, and Yassine Benajiba. Meminsight: Autonomous memory augmentation for llm agents.arXiv preprint arXiv:2503.21760, 2025
Pith/arXiv arXiv 2025
-
[29]
LLMs can reason faster only if we let them
Bilgehan Sel, Lifu Huang, Naren Ramakrishnan, Ruoxi Jia, and Ming Jin. LLMs can reason faster only if we let them. InForty-second International Conference on Machine Learning, 2025
2025
-
[30]
Reflexion: Language agents with verbal reinforcement learning.Advances in Neural Information Processing Systems, 36:8634–8652, 2023
Noah Shinn, Federico Cassano, Ashwin Gopinath, Karthik Narasimhan, and Shunyu Yao. Reflexion: Language agents with verbal reinforcement learning.Advances in Neural Information Processing Systems, 36:8634–8652, 2023
2023
-
[31]
Mohit Shridhar, Xingdi Yuan, Marc-Alexandre Côté, Yonatan Bisk, Adam Trischler, and Matthew Hausknecht. Alfworld: Aligning text and embodied environments for interactive learning.arXiv preprint arXiv:2010.03768, 2020
Pith/arXiv arXiv 2010
-
[32]
Learning to summarize with human feedback
Nisan Stiennon, Long Ouyang, Jeffrey Wu, Daniel Ziegler, Ryan Lowe, Chelsea V oss, Alec Radford, Dario Amodei, and Paul F Christiano. Learning to summarize with human feedback. Advances in neural information processing systems, 33:3008–3021, 2020
2020
-
[33]
MIT press Cambridge, 1998
Richard S Sutton, Andrew G Barto, et al.Reinforcement learning: An introduction, volume 1. MIT press Cambridge, 1998
1998
-
[34]
Gemini Team, Petko Georgiev, Ving Ian Lei, Ryan Burnell, Libin Bai, Anmol Gulati, Garrett Tanzer, Damien Vincent, Zhufeng Pan, Shibo Wang, et al. Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context.arXiv preprint arXiv:2403.05530, 2024
Pith/arXiv arXiv 2024
-
[35]
Gemma 3 technical report.arXiv preprint arXiv:2503.19786, 2025
Gemma Team, Aishwarya Kamath, Johan Ferret, Shreya Pathak, et al. Gemma 3 technical report.arXiv preprint arXiv:2503.19786, 2025
Pith/arXiv arXiv 2025
-
[36]
Llama: Open and efficient foundation language models.arXiv preprint arXiv:2302.13971, 2023
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timo- thée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models.arXiv preprint arXiv:2302.13971, 2023
Pith/arXiv arXiv 2023
-
[37]
The 2014 international planning competition: Progress and trends.Ai Magazine, 36(3):90–98, 2015
Mauro Vallati, Lukas Chrpa, Marek Grze ´s, Thomas Leo McCluskey, Mark Roberts, Scott Sanner, et al. The 2014 international planning competition: Progress and trends.Ai Magazine, 36(3):90–98, 2015
2014
-
[38]
Enhancing large language model with self-controlled memory framework
Bing Wang, Xinnian Liang, Jian Yang, Hui Huang, Shuangzhi Wu, Peihao Wu, Lu Lu, Zejun Ma, and Zhoujun Li. Enhancing large language model with self-controlled memory framework. arXiv preprint arXiv:2304.13343, 2023
Pith/arXiv arXiv 2023
-
[39]
V oyager: An open-ended embodied agent with large language models
Guanzhi Wang, Yuqi Xie, Yunfan Jiang, Ajay Mandlekar, Chaowei Xiao, Yuke Zhu, Linxi Fan, and Anima Anandkumar. V oyager: An open-ended embodied agent with large language models. Transactions on Machine Learning Research, 2024
2024
-
[40]
Hanlin Wang, Jian Wang, Chak Tou Leong, and Wenjie Li. Steca: Step-level trajectory calibration for llm agent learning.arXiv preprint arXiv:2502.14276, 2025
Pith/arXiv arXiv 2025
-
[41]
A survey on large language model based autonomous agents.Frontiers of Computer Science, 18(6):186345, 2024
Lei Wang, Chen Ma, Xueyang Feng, Zeyu Zhang, Hao Yang, Jingsen Zhang, Zhiyuan Chen, Jiakai Tang, Xu Chen, Yankai Lin, et al. A survey on large language model based autonomous agents.Frontiers of Computer Science, 18(6):186345, 2024
2024
-
[42]
Scienceworld: Is your agent smarter than a 5th grader?arXiv preprint arXiv:2203.07540, 2022
Ruoyao Wang, Peter Jansen, Marc-Alexandre Côté, and Prithviraj Ammanabrolu. Scienceworld: Is your agent smarter than a 5th grader?arXiv preprint arXiv:2203.07540, 2022
Pith/arXiv arXiv 2022
-
[43]
Chi, Sharan Narang, Aakanksha Chowdhery, and Denny Zhou
Xuezhi Wang, Jason Wei, Dale Schuurmans, Quoc V Le, Ed H. Chi, Sharan Narang, Aakanksha Chowdhery, and Denny Zhou. Self-consistency improves chain of thought reasoning in language models. InThe Eleventh International Conference on Learning Representations, 2023. 12
2023
-
[44]
Agent workflow memory
Zora Zhiruo Wang, Jiayuan Mao, Daniel Fried, and Graham Neubig. Agent workflow memory. InForty-second International Conference on Machine Learning, 2025
2025
-
[45]
Chain-of-thought prompting elicits reasoning in large language models
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, brian ichter, Fei Xia, Ed Chi, Quoc V Le, and Denny Zhou. Chain-of-thought prompting elicits reasoning in large language models. In S. Koyejo, S. Mohamed, A. Agarwal, D. Belgrave, K. Cho, and A. Oh, editors, Advances in Neural Information Processing Systems, volume 35, pages 24824–24837. Curran Assoc...
2022
-
[46]
Inference scaling laws: An empirical analysis of compute-optimal inference for LLM problem-solving
Yangzhen Wu, Zhiqing Sun, Shanda Li, Sean Welleck, and Yiming Yang. Inference scaling laws: An empirical analysis of compute-optimal inference for LLM problem-solving. InThe Thirteenth International Conference on Learning Representations, 2025
2025
-
[47]
The rise and potential of large language model based agents: A survey.Science China Information Sciences, 68(2):121101, 2025
Zhiheng Xi, Wenxiang Chen, Xin Guo, Wei He, Yiwen Ding, Boyang Hong, Ming Zhang, Junzhe Wang, Senjie Jin, Enyu Zhou, et al. The rise and potential of large language model based agents: A survey.Science China Information Sciences, 68(2):121101, 2025
2025
-
[48]
Sang Michael Xie, Aditi Raghunathan, Percy Liang, and Tengyu Ma. An explanation of in-context learning as implicit bayesian inference.arXiv preprint arXiv:2111.02080, 2021
Pith/arXiv arXiv 2021
-
[49]
Self-evaluation guided beam search for reasoning.Advances in Neural Information Processing Systems, 36:41618–41650, 2023
Yuxi Xie, Kenji Kawaguchi, Yiran Zhao, James Xu Zhao, Min-Yen Kan, Junxian He, and Michael Xie. Self-evaluation guided beam search for reasoning.Advances in Neural Information Processing Systems, 36:41618–41650, 2023
2023
-
[50]
A-mem: Agentic memory for LLM agents
Wujiang Xu, Zujie Liang, Kai Mei, Hang Gao, Juntao Tan, and Yongfeng Zhang. A-mem: Agentic memory for LLM agents. InThe Thirty-ninth Annual Conference on Neural Information Processing Systems, 2025
2025
-
[51]
An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, et al. Qwen2.5 technical report. arXiv:2412.15115 [cs.CL], 2024
Pith/arXiv arXiv 2024
-
[52]
Tree of thoughts: Deliberate problem solving with large language models.Ad- vances in neural information processing systems, 36:11809–11822, 2023
Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Tom Griffiths, Yuan Cao, and Karthik Narasimhan. Tree of thoughts: Deliberate problem solving with large language models.Ad- vances in neural information processing systems, 36:11809–11822, 2023
2023
-
[53]
Rest-mcts*: Llm self-training via process reward guided tree search.Advances in Neural Information Processing Systems, 37:64735–64772, 2024
Dan Zhang, Sining Zhoubian, Ziniu Hu, Yisong Yue, Yuxiao Dong, and Jie Tang. Rest-mcts*: Llm self-training via process reward guided tree search.Advances in Neural Information Processing Systems, 37:64735–64772, 2024
2024
-
[54]
G- memory: Tracing hierarchical memory for multi-agent systems
Guibin Zhang, Muxin Fu, Kun Wang, Guancheng Wan, Miao Yu, and Shuicheng YAN. G- memory: Tracing hierarchical memory for multi-agent systems. InThe Thirty-ninth Annual Conference on Neural Information Processing Systems, 2025
2025
-
[55]
Kechi Zhang, Jia Li, Ge Li, Xianjie Shi, and Zhi Jin. Codeagent: Enhancing code generation with tool-integrated agent systems for real-world repo-level coding challenges.arXiv preprint arXiv:2401.07339, 2024
Pith/arXiv arXiv 2024
-
[56]
Expel: Llm agents are experiential learners
Andrew Zhao, Daniel Huang, Quentin Xu, Matthieu Lin, Yong-Jin Liu, and Gao Huang. Expel: Llm agents are experiential learners. InProceedings of the AAAI Conference on Artificial Intelligence, volume 38, pages 19632–19642, 2024
2024
-
[57]
Longtao Zheng, Rundong Wang, Xinrun Wang, and Bo An. Synapse: Trajectory-as-exemplar prompting with memory for computer control.arXiv preprint arXiv:2306.07863, 2023
Pith/arXiv arXiv 2023
-
[58]
Memorybank: Enhancing large language models with long-term memory
Wanjun Zhong, Lianghong Guo, Qiqi Gao, He Ye, and Yanlin Wang. Memorybank: Enhancing large language models with long-term memory. InProceedings of the AAAI Conference on Artificial Intelligence, volume 38, pages 19724–19731, 2024. 13 A Related Work Memory Mechanisms in LLM Agents.Memory is a core component that enables LLM-based agents to accumulate exper...
2024
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.