chatx / models /query_model.py
imseldrith's picture
Upload folder using huggingface_hub
8889a76
raw
history blame
128 Bytes
from pydantic import BaseModel, Field
class QueryModel(BaseModel):
user_input: str = Field(min_length=1, max_length=1000)