Files
AutoGPT/autogpt_platform/backend/backend/exec.py

17 lines
319 B
Python

from backend.app import run_processes
from backend.executor import DatabaseManager, ExecutionManager
def main():
"""
Run all the processes required for the AutoGPT-server REST API.
"""
run_processes(
DatabaseManager(),
ExecutionManager(),
)
if __name__ == "__main__":
main()