Jesse Johnson
New commit for backend deployment: 2025-09-25_13-24-03
c59d808
raw
history blame contribute delete
149 Bytes
from pydantic import BaseModel, Field
class ChatResponse(BaseModel):
response: str = Field(..., description="Bot response to the user message")