feat: add POST /ai/fix-tree endpoint for AI-powered validation fixes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-02-26 17:25:38 -05:00
parent 373736c594
commit b3925150d7
3 changed files with 249 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ from app.api.endpoints import target_lists
from app.api.endpoints import maintenance_schedules
from app.api.endpoints import feedback
from app.api.endpoints import ai_builder
from app.api.endpoints import ai_fix
api_router = APIRouter()
@@ -36,3 +37,4 @@ api_router.include_router(target_lists.router)
api_router.include_router(maintenance_schedules.router)
api_router.include_router(feedback.router)
api_router.include_router(ai_builder.router)
api_router.include_router(ai_fix.router)