zss2341's picture
Upload 22 files
b06ed0c
raw
history blame
No virus
91 Bytes
export interface ChatMessage {
role: 'system' | 'user' | 'assistant'
content: string
}