| 153 | |
| 154 | |
| 155 | class ChatConfig(BaseModel): |
| 156 | starter_questions: Optional[List[str]] = Field( |
| 157 | default=None, |
| 158 | description="List of starter questions", |
| 159 | ) |
| 160 | |
| 161 | class Config: |
| 162 | json_schema_extra = { |
| 163 | "example": { |
| 164 | "starterQuestions": [ |
| 165 | "What standards for letters exist?", |
| 166 | "What are the requirements for a letter to be considered a letter?", |
| 167 | ] |
| 168 | } |
| 169 | } |
| 170 | alias_generator = to_camel |