File size: 250 Bytes
ad87194
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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")