UNPKG

multimind-sdk

Version:

This SDK gives JavaScript/TypeScript developers full access to advanced AI features like agent orchestration, RAG, and fine-tuning — without needing to manage backend code.

12 lines 369 B
export interface FineTuneConfig { configPath: string; epochs?: number; learningRate?: number; batchSize?: number; } export declare function fineTuneModel(config: FineTuneConfig): Promise<any>; export declare function createFineTuner(config: FineTuneConfig): Promise<{ success: boolean; message: string; }>; //# sourceMappingURL=fineTune.d.ts.map