space-test / payload.py
Tony Shepherd
attempt at a helloworld FastApi endpoint
abb1f73
raw
history blame
358 Bytes
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."
}
]
}
}