fastlane / models /input.py
hrguarinv's picture
Rename models/query.py to models/input.py
bd7355e verified
raw
history blame
No virus
201 Bytes
from typing import Optional, List, Dict, Tuple
from pydantic import BaseModel
class Input(BaseModel):
text: str
files: Optional[List] = None
history: Optional[List[Dict[str, str]]] = None