interface LlmModel {
    generateContent(options: {
        prompt: string;
    } & LlmModelConfig): Promise<LlmResponse>;
}

Methods