content-moderator-api / api /schemas.py
mothy-08
Updated
e62960c
Raw
History Blame Contribute Delete
271 Bytes
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
),
]