UNPKG

capsule-ai-cli

Version:

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

15 lines 430 B
import React from 'react'; interface ChatMessage { role: 'user' | 'assistant' | 'system'; content: string; timestamp: Date; model?: string; cost?: number; } interface InteractiveChatProps { onSendMessage: (message: string) => Promise<void>; initialMessages?: ChatMessage[]; } export declare const InteractiveChat: React.FC<InteractiveChatProps>; export {}; //# sourceMappingURL=InteractiveChat.d.ts.map