ishworrsubedii's picture
Initial commit
a4a2363
raw
history blame contribute delete
300 Bytes
"""
Created By: ishwor subedi
Date: 2024-08-29
"""
from pydantic import BaseModel, Field
class FollowUps(BaseModel):
q1: str = Field(description="First Follow-up Question")
q2: str = Field(description="Second Follow-up Question")
q3: str = Field(description="Third Follow-up Question")