malek-messaoudii
Update chat voice part
a71355d
raw
history blame contribute delete
229 Bytes
from pydantic import BaseModel
class STTResponse(BaseModel):
text: str
class Config:
json_schema_extra = {
"example": {
"text": "Hello, how are you today?"
}
}