Spaces:
Sleeping
Sleeping
File size: 271 Bytes
590e30d | 1 2 3 4 5 6 7 8 9 10 11 12 | from typing_extensions import Annotated
from pydantic import BaseModel, StringConstraints
class Item(BaseModel):
text: Annotated[
str,
StringConstraints(
strip_whitespace=True, strict=True, min_length=1, max_length=2500
),
]
|