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.

11 lines 349 B
export interface AgentConfig { model?: string; temperature?: number; maxTokens?: number; } export declare function generateWithAgent(prompt: string, config?: AgentConfig): Promise<any>; export declare function createAgent(config?: AgentConfig): Promise<{ success: boolean; message: string; }>; //# sourceMappingURL=agent.d.ts.map