from __future__ import annotations from pydantic import BaseModel, Field class CreateFindAgentV2TestBody(BaseModel): demand_word: str = Field(min_length=1, max_length=256)