mirror of
https://github.com/instructkr/claude-code.git
synced 2026-05-15 02:16:44 +00: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
|