Files
AutoGPT/rnd/nextgenautogpt
Swifty a5ee640935 feat(rnd): Add template of the next gen autogpt project (#7162)
* feat(rnd): Add template of the next gen autogpt project

* fix(rnd): fix typo

* fix(rnd): typo

* Added multi-processor arch

* feat(rnd) add bi-direction communication

* Updated project structure
2024-05-22 14:36:38 +02:00
..

Next Gen AutoGPT

This is a research project into creating the next generation of autogpt, which is an autogpt agent server.

It will come with the AutoGPT Agent as the default agent

Project Outline

.
├── READEME.md
├── nextgenautogpt
│   ├── __init__.py
│   ├── __main__.py
│   ├── cli.py              # The CLI tool for running the system 
│   ├── executor            # The Component Executor Process
│   │   └── __init__.py
│   ├── manager             # The Agent Manager it manages a pool of executors and schedules components to run
│   │   └── __init__.py
│   └── server              # The main application. It includes the api server and additional modules
│       └── __init__.py
└── pyproject.toml