mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-25 11:18:06 +00:00
9 lines
210 B
Python
Executable File
9 lines
210 B
Python
Executable File
from fastapi import FastAPI
|
|
from server.bootstrap import init_app
|
|
from utils.env_loader import load_dotenv_file
|
|
|
|
load_dotenv_file()
|
|
|
|
app = FastAPI(title="DevAll Workflow Server", version="1.0.0")
|
|
init_app(app)
|