Project / core /models /utls.py
puzan789's picture
updated
ad87194
raw
history blame
250 Bytes
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")