Spaces:
Configuration error
Configuration error
File size: 91 Bytes
b06ed0c |
1 2 3 4 5 |
export interface ChatMessage {
role: 'system' | 'user' | 'assistant'
content: string
}
|