ML-Learner / python_backend /src /Agents /models /dummyInterview_model.py
VashuTheGreat2's picture
Upload folder using huggingface_hub
c01955c verified
from pydantic import BaseModel, Field
from typing import List
class InterviewSchema(BaseModel):
companyName: str = Field(..., description="Company name")
topic: str = Field(..., description="Interview topic")
job_Role: str = Field(..., description="Job role")
time: str = Field(..., description="Interview date and time")
class InterviewResponse(BaseModel):
result: List[InterviewSchema]