mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-07 21:35:34 -05:00
### Changes 🏗️ Added these types of input blocks: * TextShort * TextLong * Number * Date * Time * FileUpload * Dropdown * Toggle ### Checklist 📋 #### For code changes: - [x] I have clearly listed my changes in the PR description - [x] I have made a test plan - [x] I have tested my changes according to the test plan: - [x] Test in respective block codes.
14 lines
260 B
Python
14 lines
260 B
Python
from backend.app import run_processes
|
|
from backend.executor import ExecutionManager
|
|
|
|
|
|
def main():
|
|
"""
|
|
Run all the processes required for the AutoGPT-server REST API.
|
|
"""
|
|
run_processes(ExecutionManager())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|