File size: 149 Bytes
c59d808 |
1 2 3 4 5 |
from pydantic import BaseModel, Field
class ChatResponse(BaseModel):
response: str = Field(..., description="Bot response to the user message")
|
c59d808 |
1 2 3 4 5 |
from pydantic import BaseModel, Field
class ChatResponse(BaseModel):
response: str = Field(..., description="Bot response to the user message")
|