13 lines
277 B
Python
13 lines
277 B
Python
# backend/app/main.py
|
|
from fastapi import FastAPI
|
|
from .api.route import router
|
|
|
|
app = FastAPI(title="LLM Workflow Engine")
|
|
|
|
# 注册路由
|
|
app.include_router(router, prefix="/api")
|
|
|
|
if __name__ == "__main__":
|
|
import uvicorn
|
|
uvicorn.run(app, host="0.0.0.0", port=8000)
|