2da4544 c45f0d6 a71355d c45f0d6
1
2
3
4
5
6
7
8
9
10
11
from pydantic import BaseModel class STTResponse(BaseModel): text: str class Config: json_schema_extra = { "example": { "text": "Hello, how are you today?" } }