UNPKG

capsule-ai-cli

Version:

The AI Model Orchestrator - Intelligent multi-model workflows with device-locked licensing

15 lines 355 B
interface TaskOptions { task: string; provider?: string; model?: string; json?: boolean; timeout?: number; } interface TaskResult { success: boolean; output?: string; error?: string; } export declare function executeTaskMode(options: TaskOptions): Promise<TaskResult>; export {}; //# sourceMappingURL=task-executor.d.ts.map