From d3b5ac3876843ffd3407f58e41377e273934cb9a Mon Sep 17 00:00:00 2001 From: Danil Parunin 5f1b81b8-4f5d-11e8-9c2d-fa7ae01bbebc Date: Sat, 6 Dec 2025 15:07:09 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20sc?= =?UTF-8?q?hemas.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schemas.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 schemas.py diff --git a/schemas.py b/schemas.py deleted file mode 100644 index 9754198..0000000 --- a/schemas.py +++ /dev/null @@ -1,18 +0,0 @@ -from enum import StrEnum -from pydantic import BaseModel, Field - -class AgentOption(StrEnum): - AUTO = "Авто" - LAWYER = "Юрист" - ECONOMIST = "Экономист" - WEB_DEVELOPER = "Web_developer" - ACCOUNTANT = "Бухгалтер" - PSYCHOLOGIST = "Психолог" - -class ChatRequest(BaseModel): - message: str = Field(..., min_length=1, max_length=4000) - agent: AgentOption = AgentOption.AUTO - -class ChatResponse(BaseModel): - reply: str - agent_used: str \ No newline at end of file