18 lines
295 B
TypeScript
18 lines
295 B
TypeScript
export const openAIVoices = [
|
|
'alloy',
|
|
'echo',
|
|
'fable',
|
|
'onyx',
|
|
'nova',
|
|
'shimmer',
|
|
] as const
|
|
|
|
export const defaultOpenAIOptions = {
|
|
baseUrl: 'https://api.openai.com/v1',
|
|
model: 'gpt-3.5-turbo',
|
|
voiceModel: 'tts-1',
|
|
temperature: 1,
|
|
} as const
|
|
|
|
export const maxToolCalls = 10
|