Spaces:
Running
Running
File size: 267 Bytes
1ccbe7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
export interface Message {
id: string;
role: 'user' | 'assistant' | 'system';
content: string;
timestamp: Date;
image?: string; // Base64 image data
}
export interface EditingMessage {
id: string;
content: string;
image?: string;
}
|