paper-with-me

Papers

MutaGReP: Execution-Free Repository-Grounded Plan Search for Code-Use

2025-02-21 · Zaid Khan, Ali Farhadi, Ranjay Krishna, Luca Weihs, Mohit Bansal, Tanmay Gupta

When a human requests an LLM to complete a coding task using functionality from a large code repository, how do we provide context from the repo to the LLM? One approach is to add the entire repo to the LLM's context window. However, most tasks involve only fraction of symbols from a repo, longer contexts are detrimental to the LLM's reasoning abilities, and context windows are not unlimited. Alternatively, we could emulate the human ability to navigate a large repo, pick out the right functionality, and form a plan to solve the task. We propose MutaGReP (Mutation-guided Grounded Repository Plan Search), an approach to search for plans that decompose a user request into natural language steps grounded in the codebase. MutaGReP performs neural tree search in plan space, exploring by mutating plans and using a symbol retriever for grounding. On the challenging LongCodeArena benchmark, our plans use less than 5% of the 128K context window for GPT-4o but rival the coding performance of GPT-4o with a context window filled with the repo. Plans produced by MutaGReP allow Qwen 2.5 Coder 32B and 72B to match the performance of GPT-4o with full repo context and enable progress on the hardest LongCodeArena tasks. Project page: zaidkhan.me/MutaGReP

📄 PDF Abstract BibTeX arXiv:2502.15872

Code (0)

등록된 구현이 없습니다.

Tasks

Navigate

Similar Papers 제목 키워드 기반

AgentForge: Execution-Grounded Multi-Agent LLM Framework for Autonomous Software Engineering

2026-04-13 · Rajesh Kumar, Waqar Ali, Junaid Ahmed, Najma Imtiaz Ali 외 arxiv

Large language models generate plausible code but cannot verify correctness. Existing multi-agent systems simulate execution or leave verification optional. We introduce execution-grounded verification as a first-class p…

Dial: A Knowledge-Grounded Dialect-Specific NL2SQL System

2026-03-08 · Xiang Zhang, Hongming Xu, Le Zhou, Wei Zhou 외 arxiv

Enterprises commonly deploy heterogeneous database systems, each of which owns a distinct SQL dialect with different syntax rules, built-in functions, and execution constraints. However, most existing NL2SQL methods assu…

One Tool Is Enough: Reinforcement Learning for Repository-Level LLM Agents

2025-12-24 · Zhaoxi Zhang, Yitong Duan, Yanzhi Zhang, Yiming Xu 외 arxiv

Locating files and functions requiring modification in large software repositories is challenging due to their scale and structural complexity. Existing LLM-based methods typically treat this as a repository-level retrie…

Reinforcement Learning

Mastermind: Strategy-grounded Learning for Repository-Scale Vulnerability Reproduction

2026-07-02 · Mingzhe Du, Luu Anh Tuan, Tianyi Wu, Renyang Liu 외 arxiv

Repository-level vulnerability reproduction is a demanding software engineering (SE) task: an agent must inspect a codebase, infer the input grammar that reaches a vulnerable path, construct a proof-of-conceptv(PoC), and…

CodeTeam: An LLM-Powered Multi-Agent Framework for Repository-Level Code Generation

2026-06-20 · Yifei Wang, Ruiyin Li, Peng Liang, Qiong Feng 외 arxiv

Natural language to repository generation (NL2Repo) requires a system to construct an entire software repository from a natural-language requirements document. Compared with function-level code generation, this task dema…

Code GenerationDecision Making