import type { LLMQuestion } from './LLMQuestion'; /** * Serializer for the response data that returns additional questions. * * Attributes: * follow_up_questions (list[LLMQuestionSerializer]): List of generated follow-up questions. */ export type QuestionResponse = { questions: Array; };