mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-30 03:00:41 -04:00
Restructuring the Repo to make it clear the difference between classic autogpt and the autogpt platform: * Move the "classic" projects `autogpt`, `forge`, `frontend`, and `benchmark` into a `classic` folder * Also rename `autogpt` to `original_autogpt` for absolute clarity * Rename `rnd/` to `autogpt_platform/` * `rnd/autogpt_builder` -> `autogpt_platform/frontend` * `rnd/autogpt_server` -> `autogpt_platform/backend` * Adjust any paths accordingly
14 lines
268 B
Python
14 lines
268 B
Python
from backend.app import run_processes
|
|
from backend.server.ws_api import WebsocketServer
|
|
|
|
|
|
def main():
|
|
"""
|
|
Run all the processes required for the AutoGPT-server WebSocket API.
|
|
"""
|
|
run_processes(WebsocketServer())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|