export declare function chatWithLLM(prompt: string): Promise<string>;
export declare function setModelPath(path: string): Promise<string>;
export declare function setModelOptions(options: {
    modelPath?: string;
    maxTokens?: number;
    topK?: number;
    temperature?: number;
    randomSeed?: number;
}): Promise<string>;
//# sourceMappingURL=index.d.ts.map