capsule-ai-cli
Version:
The AI Model Orchestrator - Intelligent multi-model workflows with device-locked licensing
19 lines • 505 B
TypeScript
import React from 'react';
interface Message {
id: string;
type: 'user' | 'assistant' | 'system' | 'error' | 'tool-call' | 'tool-result';
content: string;
timestamp: Date;
metadata?: {
toolName?: string;
success?: boolean;
};
}
interface ConversationViewProps {
messages: Message[];
height: number;
scrollOffset?: number;
}
export declare const ConversationView: React.FC<ConversationViewProps>;
export {};
//# sourceMappingURL=ConversationView.d.ts.map