feat(stage8): evidence scoring — transparent multidimensional scores (independence, proximity, support, contradiction, directness, date)

This commit is contained in:
NSCT Agent
2026-08-24 07:47:00 +00:00
parent cc9d4f2ba5
commit 719e218d9a
6 changed files with 2092 additions and 3 deletions

View File

@@ -95,6 +95,10 @@ def create_app() -> FastAPI:
from nsct.api.stage7 import router as stage7_router
app.include_router(stage7_router, tags=["research"])
# Mount evidence scoring router (Stage 8)
from nsct.api.stage8 import router as stage8_router
app.include_router(stage8_router, tags=["research"])
return app