No Description

mamoodi ef189d52a5 Remove ollama reference from documentation for now (#3959) 1 year ago
.devcontainer 243cb492aa Run pre-commit on all files (#3884) 1 year ago
.github f11e767eb5 Remove Cleanup stage in runtime tests (#3861) 1 year ago
agenthub 6682e0f1dd (fix) CodeActAgent: use `content` of AgentDelegateObservation (#3970) 1 year ago
containers f7ebc1cf1f chore: Add docker files for developing inside container. (#3911) 1 year ago
dev_config 01ae22ef57 Rename OpenDevin to OpenHands (#3472) 1 year ago
docs ef189d52a5 Remove ollama reference from documentation for now (#3959) 1 year ago
evaluation b13ed017d8 [eval] add git patch post-processing for SWE-Bench eval_infer (#3980) 1 year ago
frontend 3c77cc80dc Release 0.9.4 (#3982) 1 year ago
openhands 72ca1690a7 Wait for runtime to be ready in __init__ (#3963) 1 year ago
tests 6682e0f1dd (fix) CodeActAgent: use `content` of AgentDelegateObservation (#3970) 1 year ago
.dockerignore 516c9bf1e0 Revamp docker build process (#1121) 1 year ago
.gitattributes e32d95cb1a lint: simplify hooks already covered by Ruff (#1204) 1 year ago
.gitignore 8f0f764a85 fix: CI docker image push (#3476) 1 year ago
CODE_OF_CONDUCT.md 46edb4b15b chore: Release 0.8.0 (#2919) 1 year ago
CONTRIBUTING.md 01ae22ef57 Rename OpenDevin to OpenHands (#3472) 1 year ago
CREDITS.md 01ae22ef57 Rename OpenDevin to OpenHands (#3472) 1 year ago
Development.md f7ebc1cf1f chore: Add docker files for developing inside container. (#3911) 1 year ago
ISSUE_TRIAGE.md 214f728d32 docs: Add doc on how issues are triaged (#2928) 1 year ago
LICENSE 39add27f15 Create MIT LICENSE (#8) 1 year ago
MANIFEST.in 19bc06198d exclude Python cache files/folders from sdist to avoid permission errors at runtime (#3381) 1 year ago
Makefile f7ebc1cf1f chore: Add docker files for developing inside container. (#3911) 1 year ago
README.md 797f02ff6f rename huggingface evaluation benchmark (#3845) 1 year ago
compose.yml f7ebc1cf1f chore: Add docker files for developing inside container. (#3911) 1 year ago
config.template.toml 8fdfece059 Refactor messages serialization (#3832) 1 year ago
poetry.lock 31b189c9af chore(deps-dev): bump ruff from 0.6.5 to 0.6.6 (#3976) 1 year ago
pydoc-markdown.yml cd58194d2a docs(docs): start implementing docs website (#1372) 1 year ago
pyproject.toml 3c77cc80dc Release 0.9.4 (#3982) 1 year ago
pytest.ini 554636cf2a (fix) Fix runtime (RT) tests and split tests in 2 actions (openhands/root) (#3791) 1 year ago

README.md

Logo

OpenHands: Code Less, Make More

Contributors Stargazers CodeCov MIT License
Join our Slack community Join our Discord community Credits
Check out the documentation Paper on Arxiv Evaluation Benchmark Score

Welcome to OpenHands (formerly OpenDevin), a platform for software development agents powered by AI.

OpenHands agents can do anything a human developer can: modify code, run commands, browse the web, call APIs, and yes—even copy code snippets from StackOverflow.

Learn more at docs.all-hands.dev, or jump to the Quick Start.

App screenshot

⚡ Quick Start

The easiest way to run OpenHands is in Docker. You can change WORKSPACE_BASE below to point OpenHands to existing code that you'd like to modify.

See the Getting Started guide for system requirements and more information.

export WORKSPACE_BASE=$(pwd)/workspace

docker run -it --pull=always \
    -e SANDBOX_RUNTIME_CONTAINER_IMAGE=ghcr.io/all-hands-ai/runtime:0.9-nikolaik \
    -e SANDBOX_USER_ID=$(id -u) \
    -e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
    -v $WORKSPACE_BASE:/opt/workspace_base \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -p 3000:3000 \
    --add-host host.docker.internal:host-gateway \
    --name openhands-app-$(date +%Y%m%d%H%M%S) \
    ghcr.io/all-hands-ai/openhands:0.9

You'll find OpenHands running at http://localhost:3000!

You can also run OpenHands in a scriptable headless mode, or as an interactive CLI.

Visit Getting Started for more information and setup instructions.

If you want to modify the OpenHands source code, check out Development.md.

Having issues? The Troubleshooting Guide can help.

📖 Documentation

To learn more about the project, and for tips on using OpenHands, check out our documentation.

There you'll find resources on how to use different LLM providers, troubleshooting resources, and advanced configuration options.

🤝 How to Contribute

OpenHands is a community-driven project, and we welcome contributions from everyone. Whether you're a developer, a researcher, or simply enthusiastic about advancing the field of software engineering with AI, there are many ways to get involved:

  • Code Contributions: Help us develop new agents, core functionality, the frontend and other interfaces, or sandboxing solutions.
  • Research and Evaluation: Contribute to our understanding of LLMs in software engineering, participate in evaluating the models, or suggest improvements.
  • Feedback and Testing: Use the OpenHands toolset, report bugs, suggest features, or provide feedback on usability.

For details, please check CONTRIBUTING.md.

🤖 Join Our Community

Whether you're a developer, a researcher, or simply enthusiastic about OpenHands, we'd love to have you in our community. Let's make software engineering better together!

  • Slack workspace - Here we talk about research, architecture, and future development.
  • Discord server - This is a community-run server for general discussion, questions, and feedback.

📈 Progress

Star History Chart

📜 License

Distributed under the MIT License. See LICENSE for more information.

🙏 Acknowledgements

OpenHands is built by a large number of contributors, and every contribution is greatly appreciated! We also build upon other open source projects, and we are deeply thankful for their work.

For a list of open source projects and licenses used in OpenHands, please see our CREDITS.md file.

📚 Cite

@misc{opendevin,
      title={{OpenDevin: An Open Platform for AI Software Developers as Generalist Agents}},
      author={Xingyao Wang and Boxuan Li and Yufan Song and Frank F. Xu and Xiangru Tang and Mingchen Zhuge and Jiayi Pan and Yueqi Song and Bowen Li and Jaskirat Singh and Hoang H. Tran and Fuqiang Li and Ren Ma and Mingzhang Zheng and Bill Qian and Yanjun Shao and Niklas Muennighoff and Yizhe Zhang and Binyuan Hui and Junyang Lin and Robert Brennan and Hao Peng and Heng Ji and Graham Neubig},
      year={2024},
      eprint={2407.16741},
      archivePrefix={arXiv},
      primaryClass={cs.SE},
      url={https://arxiv.org/abs/2407.16741},
}