File size: 201 Bytes
bd7355e
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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