| from pydantic import BaseModel, Field | |
| class ChatResponse(BaseModel): | |
| response: str = Field(..., description="Bot response to the user message") | |
| from pydantic import BaseModel, Field | |
| class ChatResponse(BaseModel): | |
| response: str = Field(..., description="Bot response to the user message") | |