find_agent_v2.py 179 B

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