| 1234567891011121314151617 |
- from fastapi import FastAPI
- from .api.routes import router as api_router
- from .core.env import load_env
- load_env()
- app = FastAPI(title="AI Server", version="0.1.0")
- @app.get("/health", tags=["health"]) # 简单健康检查
- def health():
- return {"status": "ok"}
- # 业务 API 路由
- app.include_router(api_router, prefix="/api")
|