from pydantic import BaseModel, Field class Request(BaseModel): query: str = Field( title='The sentence for applying NER', max_length=1024 )