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.
8 lines • 345 B
TypeScript
export interface ModelConfig {
name: string;
config?: Record<string, any>;
}
export declare function loadModel(config: ModelConfig): Promise<any>;
export declare function routeModel(input: string, availableModels?: string[]): Promise<any>;
export declare function listAvailableModels(): Promise<any>;
//# sourceMappingURL=models.d.ts.map