| from pydantic import BaseModel | |
| class STTResponse(BaseModel): | |
| text: str | |
| class Config: | |
| json_schema_extra = { | |
| "example": { | |
| "text": "Hello, how are you today?" | |
| } | |
| } |
| from pydantic import BaseModel | |
| class STTResponse(BaseModel): | |
| text: str | |
| class Config: | |
| json_schema_extra = { | |
| "example": { | |
| "text": "Hello, how are you today?" | |
| } | |
| } |