/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ 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; };