mirror of
http://10.0.2.1:3031/sauer/claw-code.git
synced 2026-06-30 13:37:03 +10:00
14 lines
193 B
Python
14 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
|