3e7b2be
1 2 3 4 5 6 7 8 9 10 11
export type Role = 'user' | 'assistant' | 'system' export type ChatMessage = { id: string role: Role content: string } export type Choice = { id: string label: string }