mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-07 13:25:01 -05:00
17 lines
319 B
Python
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()
|