rebuild(stage-10): deliver mentor and unified llm streaming

This commit is contained in:
leefer
2026-07-30 05:52:12 +08:00
parent 532f0cfc11
commit f1fa104641
62 changed files with 6880 additions and 7 deletions
+2
View File
@@ -2,6 +2,7 @@ from fastapi import APIRouter
from backend.features.accounts.routes import router as accounts_router
from backend.features.market.routes import router as market_router
from backend.features.mentor.routes import router as mentor_router
from backend.features.screener.routes import router as screener_router
from backend.http.routes.health import router as health_router
@@ -10,3 +11,4 @@ api_router.include_router(health_router)
api_router.include_router(accounts_router)
api_router.include_router(market_router)
api_router.include_router(screener_router)
api_router.include_router(mentor_router)