UNPKG

capsule-ai-cli

Version:

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

24 lines 609 B
import React from 'react'; interface OrchestratorConfigProps { currentPreferences: { auto?: boolean; taskModels?: Record<string, { model: string; provider: string; }>; }; availableModels: Array<{ id: string; name: string; provider: string; context: number; pricing: { prompt: string; completion: string; }; }>; onClose: () => void; } export declare const OrchestratorConfig: React.FC<OrchestratorConfigProps>; export {}; //# sourceMappingURL=OrchestratorConfig.d.ts.map