Updates the requirements on [datasets](https://github.com/huggingface/datasets), [gymnasium](https://github.com/Farama-Foundation/Gymnasium), [pillow](https://github.com/python-pillow/Pillow) and [duckduckgo-search](https://github.com/deedy5/duckduckgo_search) to permit the latest version. Updates `datasets` to 3.4.0 - [Release notes](https://github.com/huggingface/datasets/releases) - [Commits](https://github.com/huggingface/datasets/compare/3.2.0...3.4.0) Updates `gymnasium` to 1.1.1 - [Release notes](https://github.com/Farama-Foundation/Gymnasium/releases) - [Commits](https://github.com/Farama-Foundation/Gymnasium/compare/v1.0.0...v1.1.1) Updates `pillow` to 11.1.0 - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/10.4.0...11.1.0) Updates `duckduckgo-search` to 7.5.2 - [Release notes](https://github.com/deedy5/duckduckgo_search/releases) - [Commits](https://github.com/deedy5/duckduckgo_search/compare/v7.5.1...v7.5.2) --- updated-dependencies: - dependency-name: datasets dependency-type: direct:production dependency-group: version-all - dependency-name: gymnasium dependency-type: direct:production dependency-group: version-all - dependency-name: pillow dependency-type: direct:production dependency-group: version-all - dependency-name: duckduckgo-search dependency-type: direct:production dependency-group: version-all ... Signed-off-by: dependabot[bot] <support@github.com>
👋 OpenManus
Manus is incredible, but OpenManus can achieve any idea without an Invite Code 🛫!
Our team members @Xinbin Liang and @Jinyu Xiang (core authors), along with @Zhaoyang Yu, @Jiayi Zhang, and @Sirui Hong, we are from @MetaGPT. The prototype is launched within 3 hours and we are keeping building!
It's a simple implementation, so we welcome any suggestions, contributions, and feedback!
Enjoy your own agent with OpenManus!
We're also excited to introduce OpenManus-RL, an open-source project dedicated to reinforcement learning (RL)- based (such as GRPO) tuning methods for LLM agents, developed collaboratively by researchers from UIUC and OpenManus.
Project Demo
Installation
We provide two installation methods. Method 2 (using uv) is recommended for faster installation and better dependency management.
Method 1: Using conda
- Create a new conda environment:
conda create -n open_manus python=3.12
conda activate open_manus
- Clone the repository:
git clone https://github.com/mannaandpoem/OpenManus.git
cd OpenManus
- Install dependencies:
pip install -r requirements.txt
Method 2: Using uv (Recommended)
- Install uv (A fast Python package installer and resolver):
curl -LsSf https://astral.sh/uv/install.sh | sh
- Clone the repository:
git clone https://github.com/mannaandpoem/OpenManus.git
cd OpenManus
- Create a new virtual environment and activate it:
uv venv --python 3.12
source .venv/bin/activate # On Unix/macOS
# Or on Windows:
# .venv\Scripts\activate
- Install dependencies:
uv pip install -r requirements.txt
Configuration
OpenManus requires configuration for the LLM APIs it uses. Follow these steps to set up your configuration:
- Create a
config.toml
file in theconfig
directory (you can copy from the example):
cp config/config.example.toml config/config.toml
- Edit
config/config.toml
to add your API keys and customize settings:
# Global LLM configuration
[llm]
model = "gpt-4o"
base_url = "https://api.openai.com/v1"
api_key = "sk-..." # Replace with your actual API key
max_tokens = 4096
temperature = 0.0
# Optional configuration for specific LLM models
[llm.vision]
model = "gpt-4o"
base_url = "https://api.openai.com/v1"
api_key = "sk-..." # Replace with your actual API key
Quick Start
One line for run OpenManus:
python main.py
Then input your idea via terminal!
For unstable version, you also can run:
python run_flow.py
How to contribute
We welcome any friendly suggestions and helpful contributions! Just create issues or submit pull requests.
Or contact @mannaandpoem via 📧email: mannaandpoem@gmail.com
Note: Before submitting a pull request, please use the pre-commit tool to check your changes. Run pre-commit run --all-files
to execute the checks.
Community Group
Join our networking group on Feishu and share your experience with other developers!
Star History
Acknowledgement
Thanks to anthropic-computer-use and browser-use for providing basic support for this project!
Additionally, we are grateful to AAAJ, MetaGPT, OpenHands and SWE-agent.
OpenManus is built by contributors from MetaGPT. Huge thanks to this agent community!
Cite
@misc{openmanus2025,
author = {Xinbin Liang and Jinyu Xiang and Zhaoyang Yu and Jiayi Zhang and Sirui Hong},
title = {OpenManus: An open-source framework for building general AI agents},
year = {2025},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/mannaandpoem/OpenManus}},
}