97ef430
1
2
3
4
5
6
from pydantic import BaseModel, Field class QueryModel(BaseModel): user_input: str = Field(min_length=1, max_length=1000)