feat(stage9): neutral synthesis engine — LLM-generated report from evidence package

This commit is contained in:
NSCT Agent
2026-08-24 11:52:10 +00:00
parent 1b54b172ca
commit d87e2b4d14
7 changed files with 3586 additions and 1 deletions

View File

@@ -99,6 +99,10 @@ def create_app() -> FastAPI:
from nsct.api.stage8 import router as stage8_router
app.include_router(stage8_router, tags=["research"])
# Mount synthesis router (Stage 9)
from nsct.api.synthesis import router as synthesis_router
app.include_router(synthesis_router, tags=["research"])
return app