Sharing this here doesn't seem like an infohazard at this point. This is all over my YouTube feed anyway.
Description from the authors:
Auto-GPT is an experimental open-source application showcasing the capabilities of the GPT-4 language model. This program, driven by GPT-4, autonomously develops and manages businesses to increase net worth. As one of the first examples of GPT-4 running fully autonomously, Auto-GPT pushes the boundaries of what is possible with AI.
I wanted to additionally call out this in their read me:
💀 Continuous Mode ⚠️
Run the AI without user authorisation, 100% automated. Continuous mode is not recommended. It is potentially dangerous and may cause your AI to run forever or carry out actions you would not usually authorise. Use at your own risk.
- Run the
main.py
Python script in your terminal:python scripts/main.py --continuous
- To exit the program, press Ctrl + C
Nice! Super nice. Super safe and super good.
Isn't AutoGPT just a super-trash version of OpenAI Plugins? At any rate, you really can't trust GPT3/4 to reliably translate user input into API calls to other programs, any more than you can trust its attempts at code generation. From my observations, to do something like OpenAI plugins reliably you have to create intermediate prompts to coerce whatever GPT3/4 cooks up into the appropriate form for the "plugin" and more often than not it will not come up with what you hoped for. To get it to do what you want usually causes massive prompt bloat and it tends to be extremely tricky to get it to cooperate.