interface Choice { output: string; } export interface TextAIResponse { prompt: string; choices: Choice[]; } export {};