import OpenAI, { ClientOptions } from "openai"; import { Models } from "../types/models.types"; export default class Ai { private readonly _role; private readonly _model; private readonly _openai; constructor(data: (ClientOptions & { key: string; }) | string); chat(message: string[] | string, data: { model?: Models; steam?: boolean; }): import("openai/core").APIPromise | null; get ai(): OpenAI; } //# sourceMappingURL=openai.d.ts.map