diff --git a/packages/stage-ui/src/stores/providers.ts b/packages/stage-ui/src/stores/providers.ts index c470c2bd6..dd6b3e79a 100644 --- a/packages/stage-ui/src/stores/providers.ts +++ b/packages/stage-ui/src/stores/providers.ts @@ -953,6 +953,34 @@ export const useProvidersStore = defineStore('providers', () => { return provider }, capabilities: { + listModels: async () => { + return [ + { + id: 'aura-2', + name: 'Aura 2', + provider: 'deepgram-tts', + description: 'Latest generation Aura model', + contextLength: 0, + deprecated: false, + }, + { + id: 'aura-1', + name: 'Aura 1', + provider: 'deepgram-tts', + description: 'First generation Aura model', + contextLength: 0, + deprecated: false, + }, + { + id: 'aura', + name: 'Aura (Legacy)', + provider: 'deepgram-tts', + description: 'Original Aura model', + contextLength: 0, + deprecated: true, + }, + ] + }, listVoices: async (config) => { const provider = createUnDeepgram((config.apiKey as string).trim(), (config.baseUrl as string).trim()) as VoiceProviderWithExtraOptions