File size: 451 Bytes
5301c48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const openAIModels = [
  { value: 'gpt-4o-2024-08-06' },
  { value: 'gpt-4o-mini-2024-07-18' },
  { value: 'gpt-4-0613' },
  { value: 'gpt-3.5-turbo-0125' },
  { value: 'gpt-3.5-turbo-1106' },
  { value: 'gpt-3.5-turbo-0613' },
]

export const factories = [
  { id: 'factory-1', name: 'Factory 1' },
  { id: 'factory-2', name: 'Factory 2' }
]

export const schemaExample = JSON.stringify({
  question: 'string',
  answer: 'string'
}, null, 2);