aboutsummaryrefslogtreecommitdiffstats
path: root/useragents/src/models.py
blob: 14d37fc0e016861d42bee7e72990a03849052de6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import pydantic


class AgentRequest(pydantic.BaseModel):
    agent_name: str
    instructions: str
    query: str


class AgentResponse(pydantic.BaseModel):
    agent_name: str
    response: str