UNPKG

rashi-discord-bot-lib

Version:

🚀 Powerful Discord bot framework with built-in database, event handling, and utilities

13 lines • 316 B
export interface AIChatOptions { apiKey: string; model?: string; temperature?: number; } export declare class AIChat { private openai; private model; private temperature; constructor(options: AIChatOptions); ask(prompt: string): Promise<string>; } //# sourceMappingURL=AIChat.d.ts.map