CoolFace
Apppublic

Coder19/interview_system

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
interview.py7 linesDownload Raw Back to schemas
1from pydantic import BaseModel2from typing import List3 4class Interview(BaseModel):5    domain: str6    questions: List[str]7    answers: List[str]