alexorlov's picture
Upload folder using huggingface_hub
6d2b0f9 verified
raw
history blame contribute delete
296 Bytes
from pydantic import BaseModel
from typing import Optional
class Question(BaseModel):
id: str
text: str
class Answer(BaseModel):
question_id: str
question_text: str
audio_transcript: str
round_number: int
class QuestionResponse(BaseModel):
id: str
text: str