Search papers, labs, and topics across Lattice.
The paper introduces FastCode, a framework for efficient code understanding and reasoning that decouples repository exploration from content consumption. FastCode employs a structural scouting mechanism to navigate a lightweight semantic-structural map of the codebase, enabling targeted dependency tracing without full-text ingestion. Experiments on SWE-QA, LongCodeQA, LOC-BENCH, and GitTaskBench show that FastCode achieves higher reasoning accuracy with significantly reduced token consumption compared to state-of-the-art baselines.
Navigate massive codebases with LLMs using a "scouting-first" approach that slashes token consumption without sacrificing reasoning accuracy.
Repository-scale code reasoning is a cornerstone of modern AI-assisted software engineering, enabling Large Language Models (LLMs) to handle complex workflows from program comprehension to complex debugging. However, balancing accuracy with context cost remains a significant bottleneck, as existing agentic approaches often waste computational resources through inefficient, iterative full-text exploration. To address this, we introduce \model, a framework that decouples repository exploration from content consumption. \model\ utilizes a structural scouting mechanism to navigate a lightweight semantic-structural map of the codebase, allowing the system to trace dependencies and pinpoint relevant targets without the overhead of full-text ingestion. By leveraging structure-aware navigation tools regulated by a cost-aware policy, the framework constructs high-value contexts in a single, optimized step. Extensive evaluations on the SWE-QA, LongCodeQA, LOC-BENCH, and GitTaskBench benchmarks demonstrate that \model\ consistently outperforms state-of-the-art baselines in reasoning accuracy while significantly reducing token consumption, validating the efficiency of scouting-first strategies for large-scale code reasoning. Source code is available at https://github.com/HKUDS/FastCode.