test update
Some checks failed
Backend ECR Deployment / build-and-push (push) Failing after 39s
Backend ECR Deployment / notify-deploy (push) Has been skipped

This commit is contained in:
DatTT127
2026-07-18 18:57:31 +07:00
parent f335c9e6f2
commit 77aa5301bc

View File

@@ -5,7 +5,7 @@ import logging
from fastapi import APIRouter, Depends, HTTPException, status, UploadFile, File
from fastapi.security import OAuth2PasswordBearer
from fastapi.responses import StreamingResponse
from PILOT_PROJECT.workspace.sprint_1_2.CODEBASE.data.spec.schemas.safety_schemas import ChatResponse
from workspace.sprint_1_2.CODEBASE.data.spec.schemas.safety_schemas import ChatResponse
from data.spec.schemas import (
HeatmapResult, RationaleResult, ChatEvent, DriftCheckResult,
EvidenceList, ActivationMeta, AnnotationArtifact, EscalationTicket,
@@ -94,7 +94,7 @@ async def circuit_breaker(session_id: str, payload: dict, user_id: str = Depends
@router.post(
"/sessions/{session_id}/chat/socratic",
response_model=ChatResponse,
responses={401: {"model": ErrorResponse}, 404: {"model: ErrorResponse}},
responses={401: {"model": ErrorResponse}, 404: {"model": ErrorResponse}},
)
async def socratic_chat(
session_id: str,