capsule-ai-cli
Version:
The AI Model Orchestrator - Intelligent multi-model workflows with device-locked licensing
19 lines • 619 B
TypeScript
import React from 'react';
interface ChatMessageProps {
type: 'user' | 'assistant' | 'system' | 'error' | 'tool-call' | 'tool-result' | 'sub-agent-start' | 'sub-agent-result';
content: string;
timestamp?: Date;
metadata?: {
toolName?: string;
success?: boolean;
error?: string;
agentId?: string;
agentStatus?: 'starting' | 'running' | 'completed' | 'failed';
agentTasks?: any[];
originalParams?: any;
};
provider?: string;
}
export declare const ChatMessage: React.FC<ChatMessageProps>;
export {};
//# sourceMappingURL=ChatMessage.d.ts.map