export interface ChatMessage { id: string; role: 'user' | 'ai'; content: string; timestamp: number; completed: boolean; }