Complete phase two benchmarks, plot previews and static export workflow

This commit is contained in:
2026-09-07 02:54:52 +08:00
parent 95095197df
commit 89df10bc4e
59 changed files with 2535 additions and 83 deletions
+4
View File
@@ -35,6 +35,8 @@ async def lifespan(_: FastAPI):
try:
yield
finally:
from app.benchmarks import service as benchmark_service
await benchmark_service.shutdown()
await container.agent.shutdown()
from app.services import index_service
await index_service.shutdown()
@@ -75,6 +77,8 @@ app.include_router(local_model_router)
app.include_router(usage_router)
app.include_router(provider_preview_router)
app.include_router(log_router)
from app.plot_routes import router as plot_router
app.include_router(plot_router)
@app.middleware('http')