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