mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-25 19:28:09 +00:00
7 lines
145 B
Python
Executable File
7 lines
145 B
Python
Executable File
from fastapi import FastAPI
|
|
|
|
from server.bootstrap import init_app
|
|
|
|
app = FastAPI(title="DevAll Workflow Server", version="1.0.0")
|
|
init_app(app)
|