abb1f73 a5a6006
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from pydantic import BaseModel class SomeText(BaseModel): """ This Data Class defines ... """ text: str model_config = { "json_schema_extra": { "examples": [ { "text": "twoday is gonna be the day that they're gonna throw it back to you." } ] } }