-
follow AIOS instruction to install the virtual environment
-
git clone and install openagi under the AIOS virtual environment
$ pip install -e .
- set up virtual environment and install the required packages using pip
conda create -n OpenAGI python=3.11
source activate OpenAGI
cd OpenAGI
pip install -r requirements.txt
- Allow your code to be able to see 'openagi'
$ pip install -e .
If you use external tool APIs in your agents, you can follow instructions of setting up tools in How to setup external tools.
You can also create .env file from the .env.example file, and then use dotenv to load the environment variables using .env file into your application's environment at runtime.
cp .env.example .env
For detailed information on how to contribute, see CONTRIBUTE. If you would like to contribute to the codebase, issues or pull requests are always welcome!
Please check out our implementation for our research paper OpenAGI: When LLM Meets Domain Experts.
@article{openagi,
title={OpenAGI: When LLM Meets Domain Experts},
author={Ge, Yingqiang and Hua, Wenyue and Mei, Kai and Ji, Jianchao and Tan, Juntao and Xu, Shuyuan and Li, Zelong and Zhang, Yongfeng},
journal={In Advances in Neural Information Processing Systems (NeurIPS)},
year={2023}
}