7
0
forked from yvv/decision

Revert Claude : retour au stub Qwen — interface stable, branchement à venir

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Yvv
2026-04-24 05:10:49 +02:00
parent 9b6322c546
commit 1f92f153c5
4 changed files with 10 additions and 149 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ from app.services.qualify_ai_service import (
AIMessage,
AIQuestion,
AIQualifyResult,
ai_frame_async,
ai_frame,
)
router = APIRouter()
@@ -127,7 +127,7 @@ async def ai_chat(payload: AIChatRequest) -> AIChatResponse:
context=payload.context,
messages=[AIMessage(role=m.role, content=m.content) for m in payload.messages],
)
resp = await ai_frame_async(req)
resp = ai_frame(req)
return AIChatResponse(
done=resp.done,