新功能:个性化推荐算法

This commit is contained in:
吕新雨
2026-02-02 16:47:37 +08:00
parent 936094211b
commit 6dc4e2b943
119 changed files with 7427 additions and 357 deletions

View File

@@ -1,6 +1,7 @@
from fastapi import FastAPI
from app.core.config import get_settings
from app.api.v1.reco import router as reco_router
from app.api.v1.user_profile_scoring import router as user_profile_router
@@ -17,6 +18,7 @@ def create_app() -> FastAPI:
# 业务路由
app.include_router(user_profile_router)
app.include_router(reco_router)
@app.get("/healthz")
async def healthz() -> dict: