summaryrefslogblamecommitdiff
path: root/frontend/src/types.ts
blob: c6d12638a0f05f514141b8cd20e0a1bf2ddde0be (plain) (tree)
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
}