- Feb 18: We update the support for Gemini series model through vertex API.
OrcaLoca (previous named Orcar), an LLM agent framework that improves accuracy for software issue localization by integrating priority-based scheduling for LLM-guided action, action decomposition with relevance scoring, and distance-aware context pruning.
OrcaLoca requires docker to run, so please first pull our docker image (forked from SWE-Agent):
docker pull hejiaz/swe-agent:latest
OrcaLoca also requires API access to LLM. (Currently OpenAI & Anthropic APIs are supported) You can either export them in CLI:
export OPENAI_API_KEY={key_here}
export ANTHROPIC_API_KEY={key_here}
or as a key.cfg file:
OPENAI_API_KEY=key_here
ANTHROPIC_API_KEY=key_here
OrcaLoca also uses torch in its search process. (torch installation guide)
cd OrcarLLM
conda create -n agentless python=3.10
conda activate agentless
pip install -e .
After installation succeeded, you can run a quick smoke test (should finish in 5-10 minutes):
python evaluation/run.py --final_stage trace_analysis --instance_ids astropy__astropy-12907 astropy__astropy-6938
Then add search stage into running:
python evaluation/run.py --final_stage search --instance_ids astropy__astropy-12907
python evaluation/run.py
cd evaluation
python process_output.py
Please go through instructions in:
- evaluation/orcar_agentless/README.md
- thirdparty/Agentless/README_orcar.md
To run agentless with 1-hop relation subgraph, you will also need to generate the
dependency_output.json
.
cd evaluation
python process_dependency.py
Our output all_preds.jsonl can be evaluated with official scripts offered by SWE-Bench. Please check the 'Set Up' and 'Usage' parts in its README.md for details.
MIT License
If our project helps you, please cite our paper with
@misc{yu2025orcalocallmagentframework,
title={OrcaLoca: An LLM Agent Framework for Software Issue Localization},
author={Zhongming Yu and Hejia Zhang and Yujie Zhao and Hanxian Huang and Matrix Yao and Ke Ding and Jishen Zhao},
year={2025},
eprint={2502.00350},
archivePrefix={arXiv},
primaryClass={cs.SE},
url={https://arxiv.org/abs/2502.00350},
}