frontend / responses.py
deven367's picture
add app and the response structure
f15cd74
raw
history blame
286 Bytes
from typing import List, Optional
from pydantic import BaseModel
class GetQuestionAndFactsResponse(BaseModel):
question: str
facts: Optional[List[str]]
status: str
class SubmitQuestionAndDocumentsResponse(BaseModel):
question: str
logs: List[str]
text: str