From f55e635d770053dc27e64e6b4cd5b4004dbadc68 Mon Sep 17 00:00:00 2001 From: ipu Date: Fri, 29 Aug 2025 17:51:16 +0300 Subject: [PATCH] add uid field to endpoints --- src/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models.py b/src/models.py index 7c33041..0da8111 100644 --- a/src/models.py +++ b/src/models.py @@ -85,6 +85,7 @@ class EstimationResponse(BaseModel): results: List[EstimationResult] class InsuranceChatRequest(BaseModel): + uid: int | None = None message: str = Field(..., description="User message") session_id: Optional[str] = Field(None, description="Chat session ID")