Develop with MetaGPT
Intruduction
MetaGPT is a multi-agent framework. We made it so that agent applications developed with MetaGPT can run on AIOS by adding just one line of code.
Quick Start
For installation and usage of open-interpreter, please refer to MetaGPT.
If you want to run an application developed with MetaGPT on AIOS, please add prepare_framework()
before you use MetaGPT, and select a framework type through FrameworkType
. When you want to use MetaGPT, you should use FrameworkType.MetaGPT
.
Then nothing needs to change, use MetaGPT as usual.
Then nothing needs to change, use MetaGPT as usual.
Or use Data Interpreter:
More examples can be found in https://github.com/agiresearch/AIOS/tree/main/scripts/aios-metagpt.
MetaGPT requires a longer output context to generate longer code, so you may need to use --max_new_tokens
to set a larger output token length.
Last updated