blob: c6d12638a0f05f514141b8cd20e0a1bf2ddde0be (
plain) (
blame)
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
}
|