mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
13 lines
193 B
Python
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
|