Research-Stack/1-Distributed-Systems/agents/claw/src/query.py

13 lines
193 B
Python

from __future__ import annotations
from dataclasses import dataclass
@dataclass(frozen=True)
class QueryRequest:
prompt: str
@dataclass(frozen=True)
class QueryResponse:
text: str