feat(stage-web|stage-tamagotchi): microsoft speech & azure speech

This commit is contained in:
Neko Ayaka
2025-03-18 11:07:26 +08:00
parent 6c2e36e15c
commit 1c83a8201b
24 changed files with 1524 additions and 415 deletions
+7 -7
View File
@@ -61,7 +61,7 @@
"culori": "^4.0.1",
"defu": "^6.1.4",
"drizzle-kit": "^0.30.5",
"drizzle-orm": "^0.40.0",
"drizzle-orm": "^0.40.1",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"nprogress": "^0.2.0",
@@ -79,7 +79,7 @@
"three": "^0.174.0",
"unified": "^11.0.5",
"valibot": "1.0.0-beta.9",
"vaul-vue": "^0.4.0",
"vaul-vue": "^0.4.1",
"vue": "^3.5.13",
"vue-demi": "^0.14.10",
"vue-i18n": "^11.1.2",
@@ -92,17 +92,17 @@
"@electron-toolkit/tsconfig": "^1.0.1",
"@iconify-json/carbon": "^1.2.8",
"@iconify-json/eos-icons": "^1.2.2",
"@iconify-json/lucide": "^1.2.29",
"@iconify-json/lucide": "^1.2.30",
"@iconify-json/mingcute": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.28",
"@iconify-json/solar": "^1.2.2",
"@iconify-json/svg-spinners": "^1.2.2",
"@iconify-json/vscode-icons": "^1.2.16",
"@iconify/utils": "^2.3.0",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@intlify/unplugin-vue-i18n": "^6.0.4",
"@proj-airi/drizzle-duckdb-wasm": "workspace:^",
"@proj-airi/elevenlabs": "workspace:^",
"@proj-airi/lobe-icons": "^0.3.6",
"@proj-airi/lobe-icons": "^1.0.3",
"@proj-airi/provider-transformers": "workspace:^",
"@proj-airi/ui-transitions": "workspace:^",
"@proj-airi/unplugin-fetch": "^0.1.4",
@@ -114,7 +114,7 @@
"@types/three": "^0.174.0",
"@types/yauzl": "^2.10.3",
"@unocss/reset": "^66.1.0-beta.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue": "^5.2.3",
"@vue-macros/volar": "^3.0.0-beta.5",
"@vueuse/motion": "^3.0.3",
"electron": "^34.3.3",
@@ -132,6 +132,6 @@
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-vue-devtools": "^7.7.2",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-tsc": "^2.2.8"
"vue-tsc": "^3.0.0-alpha.2"
}
}
@@ -95,7 +95,7 @@ function handleLanguageChange(event: Event) {
<div
v-motion
grid="~ cols-[150px_1fr]"
bg="neutral-100 dark:neutral-800"
bg="neutral-50 dark:neutral-800"
hover="bg-neutral-200 dark:bg-neutral-700"
transition="all ease-in-out duration-250" items-center gap-1.5 rounded-lg px-4
py-3
@@ -129,7 +129,7 @@ function handleLanguageChange(event: Event) {
<!-- Theme Setting -->
<label
v-motion
bg="neutral-100 dark:neutral-800"
bg="neutral-50 dark:neutral-800"
hover="bg-neutral-200 dark:bg-neutral-700"
transition="all ease-in-out duration-250"
w-full flex cursor-pointer rounded-lg px-4 py-3
@@ -169,7 +169,7 @@ function handleLanguageChange(event: Event) {
<!-- Developer Settings -->
<label
v-motion
bg="neutral-100 dark:neutral-800"
bg="neutral-50 dark:neutral-800"
hover="bg-neutral-200 dark:bg-neutral-700"
transition="all ease-in-out duration-250"
w-full flex cursor-pointer rounded-lg px-4 py-3
@@ -208,7 +208,7 @@ function handleLanguageChange(event: Event) {
</label>
</div>
<div text="neutral-200/50 dark:neutral-500/20" pointer-events-none fixed bottom-0 right-0 z--1 translate-x-10 translate-y-10>
<div v-motion text="40" i-lucide:cog />
<div v-motion text="60" i-lucide:cog />
</div>
</div>
</template>
@@ -8,7 +8,7 @@ import { RouterLink, useRouter } from 'vue-router'
const providersStore = useProvidersStore()
const consciousnessStore = useConsciousnessStore()
const { availableProviders, availableProvidersMetadata } = storeToRefs(providersStore)
const { availableProviders, availableTextGenerationsProvidersMetadata } = storeToRefs(providersStore)
const {
activeProvider,
activeModel,
@@ -78,7 +78,7 @@ function updateCustomModelName(value: string) {
role="radiogroup"
>
<RadioCardSimple
v-for="metadata in availableProvidersMetadata"
v-for="metadata in availableTextGenerationsProvidersMetadata"
:id="metadata.id"
:key="metadata.id"
v-model="activeProvider"
@@ -92,6 +92,14 @@ const modulesList = computed<Module[]>(() => [
to: '',
configured: false,
},
{
id: 'x',
name: t('settings.pages.modules.x.title'),
description: t('settings.pages.modules.x.description'),
icon: 'i-simple-icons:x',
to: '',
configured: false,
},
])
</script>
@@ -1,6 +1,7 @@
<script setup lang="ts">
import {
FieldCheckbox,
FieldInput,
FieldRange,
RadioCardSimple,
VoiceCardManySelect,
@@ -16,7 +17,7 @@ const providersStore = useProvidersStore()
const speechStore = useSpeechStore()
const {
availableProviders,
availableProvidersMetadata,
availableAudioSpeechProvidersMetadata,
} = storeToRefs(providersStore)
const {
activeSpeechProvider,
@@ -49,11 +50,6 @@ watch(activeSpeechProvider, async () => {
await speechStore.loadVoicesForProvider(activeSpeechProvider.value)
})
function updateVoiceName(value: string) {
voiceId.value = value
updateSSMLExample()
}
function updateCustomVoiceName(value: string) {
voiceId.value = value
updateSSMLExample()
@@ -74,6 +70,8 @@ function handleVoiceSelection(value: string) {
voiceId.value = value
updateSSMLExample()
}
watch(voiceId, updateSSMLExample)
</script>
<template>
@@ -110,7 +108,7 @@ function handleVoiceSelection(value: string) {
min-w-0 of-x-scroll scroll-smooth role="radiogroup"
>
<RadioCardSimple
v-for="metadata in availableProvidersMetadata"
v-for="metadata in availableAudioSpeechProvidersMetadata"
:id="metadata.id"
:key="metadata.id"
v-model="activeSpeechProvider"
@@ -262,20 +260,13 @@ function handleVoiceSelection(value: string) {
v-if="!availableVoices[activeSpeechProvider] || availableVoices[activeSpeechProvider].length === 0"
class="mt-2 space-y-6"
>
<div>
<label class="mb-1 block text-sm font-medium">
Voice Name
</label>
<input
v-model="voiceId" type="text"
class="w-full border border-neutral-300 rounded bg-white px-3 py-2 dark:border-neutral-700 dark:bg-neutral-900"
placeholder="Enter voice name (e.g., 'Rachel', 'Josh')"
@input="(event) => updateVoiceName((event.target as HTMLInputElement).value)"
>
<p class="mt-1 text-xs text-neutral-500">
For ElevenLabs, enter the exact voice name from your account
</p>
</div>
<FieldInput
v-model="voiceId"
type="text"
label="Voice ID"
description="Enter the voice ID for your custom voice"
placeholder="Enter voice name (e.g., 'Rachel', 'Josh')"
/>
<!-- Model selection for ElevenLabs -->
<div v-if="activeSpeechProvider === 'elevenlabs'">
@@ -0,0 +1,413 @@
<script setup lang="ts">
import type { Voice } from '@proj-airi/stage-ui/constants'
import type { RemovableRef } from '@vueuse/core'
import type { UnMicrosoftOptions } from '@xsai-ext/providers-local'
import type { SpeechProviderWithExtraOptions } from '@xsai-ext/shared-providers'
import {
FieldCheckbox,
FieldInput,
FieldRange,
ProviderAdvancedSettings,
ProviderApiKeyInput,
ProviderBaseUrlInput,
ProviderBasicSettings,
ProviderSettingsContainer,
ProviderSettingsLayout,
TestDummyMarker,
} from '@proj-airi/stage-ui/components'
import { voiceMap } from '@proj-airi/stage-ui/constants'
import { useProvidersStore, useSpeechStore } from '@proj-airi/stage-ui/stores'
import { generateSpeech } from '@xsai/generate-speech'
import { storeToRefs } from 'pinia'
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import { useRouter } from 'vue-router'
const { t } = useI18n()
const router = useRouter()
const providersStore = useProvidersStore()
const speechStore = useSpeechStore()
const { providers } = storeToRefs(providersStore) as { providers: RemovableRef<Record<string, any>> }
// For playground
const testText = ref('Hello! This is a test of the Microsoft Speech voice synthesis.')
const isGenerating = ref(false)
const audioUrl = ref('')
const errorMessage = ref('')
const audioPlayer = ref<HTMLAudioElement | null>(null)
// Get provider metadata
const providerId = 'microsoft-speech'
const providerMetadata = computed(() => providersStore.getProviderMetadata(providerId))
const apiKey = computed({
get: () => providers.value[providerId]?.apiKey || '',
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
providers.value[providerId].apiKey = value
},
})
const baseUrl = computed({
get: () => providers.value[providerId]?.baseUrl || providerMetadata.value?.defaultOptions?.baseUrl || '',
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
providers.value[providerId].baseUrl = value
},
})
const region = computed({
get: () => providers.value[providerId]?.region || providerMetadata.value?.defaultOptions?.region || '',
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
providers.value[providerId].region = value
},
})
// Voice settings as individual computed properties
const similarityBoost = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.similarityBoost ?? 0.75,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.similarityBoost = value
},
})
const stability = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.stability ?? 0.5,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.stability = value
},
})
const speed = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.speed ?? 1.0,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.speed = value
},
})
const style = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.style ?? 0,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].style = value
},
})
const useSpeakerBoost = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.useSpeakerBoost !== false,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.useSpeakerBoost = value
},
})
// Speech settings
const selectedLanguage = ref(speechStore.selectedLanguage)
const selectedVoice = ref(speechStore.voiceName)
const availableVoices = computed(() => speechStore.availableVoicesForLanguage)
onMounted(() => {
providersStore.initializeProvider(providerId)
// Initialize refs with current values
apiKey.value = providers.value[providerId]?.apiKey || ''
baseUrl.value = providers.value[providerId]?.baseUrl || providerMetadata.value?.defaultOptions?.baseUrl || ''
// Initialize voice settings refs
if (providers.value[providerId]?.voiceSettings) {
similarityBoost.value = (providers.value[providerId].voiceSettings as any)?.similarityBoost ?? 0.75
stability.value = (providers.value[providerId].voiceSettings as any)?.stability ?? 0.5
speed.value = (providers.value[providerId].voiceSettings as any)?.speed ?? 1.0
style.value = (providers.value[providerId].voiceSettings as any)?.style ?? 0
useSpeakerBoost.value = (providers.value[providerId].voiceSettings as any)?.useSpeakerBoost !== false
}
// Load voices if provider is configured
if (providersStore.configuredProviders[providerId]) {
speechStore.loadVoicesForProvider(providerId)
}
})
// Watch all settings and update the provider configuration
watch([apiKey, baseUrl, similarityBoost, stability, speed, style, useSpeakerBoost], () => {
providers.value[providerId] = {
...providers.value[providerId],
apiKey: apiKey.value,
baseUrl: baseUrl.value || providerMetadata.value?.defaultOptions?.baseUrl || '',
}
})
// Function to generate speech
async function generateTestSpeech() {
if (!testText.value.trim())
return
const provider = providersStore.getProviderInstance(providerId) as SpeechProviderWithExtraOptions<string, UnMicrosoftOptions>
if (!provider) {
console.error('Failed to initialize speech provider')
return
}
isGenerating.value = true
errorMessage.value = ''
try {
// Stop any currently playing audio
if (audioUrl.value) {
stopTestAudio()
}
const response = await generateSpeech({
...provider.speech('v1'),
input: testText.value,
voice: voiceMap[selectedVoice.value as Voice],
})
// Convert the response to a blob and create an object URL
audioUrl.value = URL.createObjectURL(new Blob([response]))
// Play the audio
setTimeout(() => {
if (audioPlayer.value) {
audioPlayer.value.play()
}
}, 100)
}
catch (error) {
console.error('Error generating speech:', error)
errorMessage.value = error instanceof Error ? error.message : 'An unknown error occurred'
}
finally {
isGenerating.value = false
}
}
// Function to stop audio playback
function stopTestAudio() {
if (audioPlayer.value) {
audioPlayer.value.pause()
audioPlayer.value.currentTime = 0
}
// Clean up the object URL to prevent memory leaks
if (audioUrl.value) {
URL.revokeObjectURL(audioUrl.value)
audioUrl.value = ''
}
}
// Clean up when component is unmounted
onUnmounted(() => {
if (audioUrl.value) {
URL.revokeObjectURL(audioUrl.value)
}
})
function handleResetVoiceSettings() {
providers.value[providerId] = {
...(providerMetadata.value?.defaultOptions as any),
}
}
</script>
<template>
<ProviderSettingsLayout
:provider-name="providerMetadata?.localizedName" :provider-icon="providerMetadata?.icon"
:on-back="() => router.back()"
>
<div flex="~ col md:row gap-6">
<ProviderSettingsContainer class="w-full md:w-[40%]">
<ProviderBasicSettings
:title="t('settings.pages.providers.common.section.basic.title')"
:description="t('settings.pages.providers.common.section.basic.description')"
:on-reset="handleResetVoiceSettings"
>
<ProviderApiKeyInput v-model="apiKey" :provider-name="providerMetadata?.localizedName" placeholder="sk-" />
<FieldInput
v-model="region"
label="Region"
description="Speech Service region"
placeholder="eastasia"
required
type="text"
/>
</ProviderBasicSettings>
<div flex="~ col gap-6">
<h2 class="text-lg text-neutral-500 md:text-2xl dark:text-neutral-400">
{{ t('settings.pages.providers.common.section.voice.title') }}
</h2>
<div flex="~ col gap-4">
<FieldRange
v-model="similarityBoost"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.simularity-boost.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.simularity-boost.description')"
:min="0" :max="1" :step="0.01"
/>
<FieldRange
v-model="stability"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.stability.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.stability.description')"
:min="0" :max="1" :step="0.01"
/>
<FieldRange
v-model="speed"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.speed.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.speed.description')" :min="0.7"
:max="1.2" :step="0.01"
/>
<FieldRange
v-model="style"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.style.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.style.description')" :min="0"
:max="1" :step="0.01"
/>
<FieldCheckbox
v-model="useSpeakerBoost"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.speaker-boost.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.speaker-boost.description')"
/>
</div>
</div>
<ProviderAdvancedSettings :title="t('settings.pages.providers.common.section.advanced.title')">
<ProviderBaseUrlInput
v-model="baseUrl"
:placeholder="providerMetadata?.defaultOptions?.baseUrl as string || ''" required
/>
</ProviderAdvancedSettings>
</ProviderSettingsContainer>
<div flex="~ col gap-6" class="w-full md:w-[60%]">
<div w-full rounded-xl>
<h2 class="mb-4 text-lg text-neutral-500 md:text-2xl dark:text-neutral-400" w-full>
<div class="inline-flex items-center gap-4">
<TestDummyMarker />
<div>
{{ t('settings.pages.providers.provider.elevenlabs.playground.title') }}
</div>
</div>
</h2>
<div flex="~ col gap-4">
<textarea
v-model="testText"
:placeholder="t('settings.pages.providers.provider.elevenlabs.playground.fields.field.input.placeholder')"
border="neutral-100 dark:neutral-800 solid 2 focus:neutral-200 dark:focus:neutral-700"
transition="all duration-250 ease-in-out"
bg="neutral-100 dark:neutral-800 focus:neutral-50 dark:focus:neutral-900"
h-24 w-full rounded-lg px-3 py-2 text-sm outline-none
/>
<div flex="~ col gap-6">
<label grid="~ cols-2 gap-4">
<div>
<div class="flex items-center gap-1 text-sm font-medium">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.language.label') }}
</div>
<div class="text-xs text-neutral-500 dark:text-neutral-400">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.language.description') }}
</div>
</div>
<select
v-model="selectedLanguage"
border="neutral-300 dark:neutral-800 solid 2 focus:neutral-400 dark:focus:neutral-600"
transition="border duration-250 ease-in-out" w-full rounded-lg px-2 py-1 text-nowrap text-sm
outline-none
>
<option v-for="language in speechStore.availableLanguages" :key="language" :value="language">
{{ language }}
</option>
</select>
</label>
<label grid="~ cols-2 gap-4">
<div>
<div class="flex items-center gap-1 text-sm font-medium">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.voice.label') }}
</div>
<div class="text-xs text-neutral-500 dark:text-neutral-400">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.voice.description') }}
</div>
</div>
<select
v-model="selectedVoice"
border="neutral-300 dark:neutral-800 solid 2 focus:neutral-400 dark:focus:neutral-600"
transition="border duration-250 ease-in-out" w-full rounded-lg px-2 py-1 text-nowrap text-sm
outline-none
>
<option v-for="voice in availableVoices" :key="voice.id" :value="voice.name">
{{ voice.name }}
</option>
</select>
</label>
</div>
<div flex="~ row" gap-4>
<button
border="neutral-800 dark:neutral-200 solid 2" transition="border duration-250 ease-in-out"
rounded-lg px-4 text="neutral-100 dark:neutral-900" py-2 text-sm
:disabled="isGenerating || !testText.trim() || !apiKey"
:class="{ 'opacity-50 cursor-not-allowed': isGenerating || !testText.trim() || !apiKey }"
bg="neutral-700 dark:neutral-300" @click="generateTestSpeech"
>
<div flex="~ row" items-center gap-2>
<div i-solar:play-circle-bold-duotone />
<span>{{ isGenerating ? t('settings.pages.providers.provider.elevenlabs.playground.buttons.button.test-voice.generating') : t('settings.pages.providers.provider.elevenlabs.playground.buttons.button.test-voice.label') }}</span>
</div>
</button>
<button
v-if="audioUrl" border="primary-300 dark:primary-800 solid 2"
transition="border duration-250 ease-in-out" rounded-lg px-4 py-2 text-sm @click="stopTestAudio"
>
<div flex="~ row" items-center gap-2>
<div i-solar:stop-circle-bold-duotone />
<span>Stop</span>
</div>
</button>
</div>
<div v-if="!apiKey" class="mt-2 text-sm text-red-500">
{{ t('settings.pages.providers.provider.elevenlabs.playground.validation.error-missing-api-key') }}
</div>
<div v-if="errorMessage" class="mt-2 text-sm text-red-500">
{{ errorMessage }}
</div>
<audio v-if="audioUrl" ref="audioPlayer" :src="audioUrl" controls class="mt-2 w-full" />
</div>
</div>
</div>
</div>
</ProviderSettingsLayout>
</template>
+6 -6
View File
@@ -58,7 +58,7 @@
"culori": "^4.0.1",
"defu": "^6.1.4",
"drizzle-kit": "^0.30.5",
"drizzle-orm": "^0.40.0",
"drizzle-orm": "^0.40.1",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"node-vibrant": "^4.0.3",
@@ -76,7 +76,7 @@
"three": "^0.174.0",
"unified": "^11.0.5",
"valibot": "1.0.0-beta.9",
"vaul-vue": "^0.4.0",
"vaul-vue": "^0.4.1",
"vue": "^3.5.13",
"vue-demi": "^0.14.10",
"vue-i18n": "^11.1.2",
@@ -89,14 +89,14 @@
"@electron-toolkit/preload": "^3.0.1",
"@iconify-json/carbon": "^1.2.8",
"@iconify-json/eos-icons": "^1.2.2",
"@iconify-json/lucide": "^1.2.29",
"@iconify-json/lucide": "^1.2.30",
"@iconify-json/mingcute": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.28",
"@iconify-json/solar": "^1.2.2",
"@iconify-json/svg-spinners": "^1.2.2",
"@iconify-json/vscode-icons": "^1.2.16",
"@iconify/utils": "^2.3.0",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@intlify/unplugin-vue-i18n": "^6.0.4",
"@proj-airi/drizzle-duckdb-wasm": "workspace:^",
"@proj-airi/elevenlabs": "workspace:^",
"@proj-airi/lobe-icons": "^0.3.6",
@@ -111,7 +111,7 @@
"@types/three": "^0.174.0",
"@types/yauzl": "^2.10.3",
"@unocss/reset": "^66.1.0-beta.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue": "^5.2.3",
"@vue-macros/volar": "^3.0.0-beta.5",
"@vueuse/motion": "^3.0.3",
"hfup": "workspace:^",
@@ -126,6 +126,6 @@
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-vue-devtools": "^7.7.2",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-tsc": "^2.2.8"
"vue-tsc": "^3.0.0-alpha.2"
}
}
@@ -8,7 +8,7 @@ import { RouterLink, useRouter } from 'vue-router'
const providersStore = useProvidersStore()
const consciousnessStore = useConsciousnessStore()
const { availableProviders, availableProvidersMetadata } = storeToRefs(providersStore)
const { availableProviders, availableTextGenerationsProvidersMetadata } = storeToRefs(providersStore)
const {
activeProvider,
activeModel,
@@ -78,7 +78,7 @@ function updateCustomModelName(value: string) {
role="radiogroup"
>
<RadioCardSimple
v-for="metadata in availableProvidersMetadata"
v-for="metadata in availableTextGenerationsProvidersMetadata"
:id="metadata.id"
:key="metadata.id"
v-model="activeProvider"
@@ -1,6 +1,7 @@
<script setup lang="ts">
import {
FieldCheckbox,
FieldInput,
FieldRange,
RadioCardSimple,
VoiceCardManySelect,
@@ -16,7 +17,7 @@ const providersStore = useProvidersStore()
const speechStore = useSpeechStore()
const {
availableProviders,
availableProvidersMetadata,
availableAudioSpeechProvidersMetadata,
} = storeToRefs(providersStore)
const {
activeSpeechProvider,
@@ -49,11 +50,6 @@ watch(activeSpeechProvider, async () => {
await speechStore.loadVoicesForProvider(activeSpeechProvider.value)
})
function updateVoiceName(value: string) {
voiceId.value = value
updateSSMLExample()
}
function updateCustomVoiceName(value: string) {
voiceId.value = value
updateSSMLExample()
@@ -74,6 +70,8 @@ function handleVoiceSelection(value: string) {
voiceId.value = value
updateSSMLExample()
}
watch(voiceId, updateSSMLExample)
</script>
<template>
@@ -110,7 +108,7 @@ function handleVoiceSelection(value: string) {
min-w-0 of-x-scroll scroll-smooth role="radiogroup"
>
<RadioCardSimple
v-for="metadata in availableProvidersMetadata"
v-for="metadata in availableAudioSpeechProvidersMetadata"
:id="metadata.id"
:key="metadata.id"
v-model="activeSpeechProvider"
@@ -262,20 +260,13 @@ function handleVoiceSelection(value: string) {
v-if="!availableVoices[activeSpeechProvider] || availableVoices[activeSpeechProvider].length === 0"
class="mt-2 space-y-6"
>
<div>
<label class="mb-1 block text-sm font-medium">
Voice Name
</label>
<input
v-model="voiceId" type="text"
class="w-full border border-neutral-300 rounded bg-white px-3 py-2 dark:border-neutral-700 dark:bg-neutral-900"
placeholder="Enter voice name (e.g., 'Rachel', 'Josh')"
@input="(event) => updateVoiceName((event.target as HTMLInputElement).value)"
>
<p class="mt-1 text-xs text-neutral-500">
For ElevenLabs, enter the exact voice name from your account
</p>
</div>
<FieldInput
v-model="voiceId"
type="text"
label="Voice ID"
description="Enter the voice ID for your custom voice"
placeholder="Enter voice name (e.g., 'Rachel', 'Josh')"
/>
<!-- Model selection for ElevenLabs -->
<div v-if="activeSpeechProvider === 'elevenlabs'">
@@ -0,0 +1,413 @@
<script setup lang="ts">
import type { Voice } from '@proj-airi/stage-ui/constants'
import type { RemovableRef } from '@vueuse/core'
import type { UnMicrosoftOptions } from '@xsai-ext/providers-local'
import type { SpeechProviderWithExtraOptions } from '@xsai-ext/shared-providers'
import {
FieldCheckbox,
FieldInput,
FieldRange,
ProviderAdvancedSettings,
ProviderApiKeyInput,
ProviderBaseUrlInput,
ProviderBasicSettings,
ProviderSettingsContainer,
ProviderSettingsLayout,
TestDummyMarker,
} from '@proj-airi/stage-ui/components'
import { voiceMap } from '@proj-airi/stage-ui/constants'
import { useProvidersStore, useSpeechStore } from '@proj-airi/stage-ui/stores'
import { generateSpeech } from '@xsai/generate-speech'
import { storeToRefs } from 'pinia'
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import { useRouter } from 'vue-router'
const { t } = useI18n()
const router = useRouter()
const providersStore = useProvidersStore()
const speechStore = useSpeechStore()
const { providers } = storeToRefs(providersStore) as { providers: RemovableRef<Record<string, any>> }
// For playground
const testText = ref('Hello! This is a test of the Microsoft Speech voice synthesis.')
const isGenerating = ref(false)
const audioUrl = ref('')
const errorMessage = ref('')
const audioPlayer = ref<HTMLAudioElement | null>(null)
// Get provider metadata
const providerId = 'microsoft-speech'
const providerMetadata = computed(() => providersStore.getProviderMetadata(providerId))
const apiKey = computed({
get: () => providers.value[providerId]?.apiKey || '',
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
providers.value[providerId].apiKey = value
},
})
const baseUrl = computed({
get: () => providers.value[providerId]?.baseUrl || providerMetadata.value?.defaultOptions?.baseUrl || '',
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
providers.value[providerId].baseUrl = value
},
})
const region = computed({
get: () => providers.value[providerId]?.region || providerMetadata.value?.defaultOptions?.region || '',
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
providers.value[providerId].region = value
},
})
// Voice settings as individual computed properties
const similarityBoost = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.similarityBoost ?? 0.75,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.similarityBoost = value
},
})
const stability = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.stability ?? 0.5,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.stability = value
},
})
const speed = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.speed ?? 1.0,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.speed = value
},
})
const style = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.style ?? 0,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].style = value
},
})
const useSpeakerBoost = computed({
get: () => (providers.value[providerId]?.voiceSettings as any)?.useSpeakerBoost !== false,
set: (value) => {
if (!providers.value[providerId])
providers.value[providerId] = {}
if (!providers.value[providerId].voiceSettings)
providers.value[providerId].voiceSettings = {}
providers.value[providerId].voiceSettings.useSpeakerBoost = value
},
})
// Speech settings
const selectedLanguage = ref(speechStore.selectedLanguage)
const selectedVoice = ref(speechStore.voiceName)
const availableVoices = computed(() => speechStore.availableVoicesForLanguage)
onMounted(() => {
providersStore.initializeProvider(providerId)
// Initialize refs with current values
apiKey.value = providers.value[providerId]?.apiKey || ''
baseUrl.value = providers.value[providerId]?.baseUrl || providerMetadata.value?.defaultOptions?.baseUrl || ''
// Initialize voice settings refs
if (providers.value[providerId]?.voiceSettings) {
similarityBoost.value = (providers.value[providerId].voiceSettings as any)?.similarityBoost ?? 0.75
stability.value = (providers.value[providerId].voiceSettings as any)?.stability ?? 0.5
speed.value = (providers.value[providerId].voiceSettings as any)?.speed ?? 1.0
style.value = (providers.value[providerId].voiceSettings as any)?.style ?? 0
useSpeakerBoost.value = (providers.value[providerId].voiceSettings as any)?.useSpeakerBoost !== false
}
// Load voices if provider is configured
if (providersStore.configuredProviders[providerId]) {
speechStore.loadVoicesForProvider(providerId)
}
})
// Watch all settings and update the provider configuration
watch([apiKey, baseUrl, similarityBoost, stability, speed, style, useSpeakerBoost], () => {
providers.value[providerId] = {
...providers.value[providerId],
apiKey: apiKey.value,
baseUrl: baseUrl.value || providerMetadata.value?.defaultOptions?.baseUrl || '',
}
})
// Function to generate speech
async function generateTestSpeech() {
if (!testText.value.trim())
return
const provider = providersStore.getProviderInstance(providerId) as SpeechProviderWithExtraOptions<string, UnMicrosoftOptions>
if (!provider) {
console.error('Failed to initialize speech provider')
return
}
isGenerating.value = true
errorMessage.value = ''
try {
// Stop any currently playing audio
if (audioUrl.value) {
stopTestAudio()
}
const response = await generateSpeech({
...provider.speech('v1'),
input: testText.value,
voice: voiceMap[selectedVoice.value as Voice],
})
// Convert the response to a blob and create an object URL
audioUrl.value = URL.createObjectURL(new Blob([response]))
// Play the audio
setTimeout(() => {
if (audioPlayer.value) {
audioPlayer.value.play()
}
}, 100)
}
catch (error) {
console.error('Error generating speech:', error)
errorMessage.value = error instanceof Error ? error.message : 'An unknown error occurred'
}
finally {
isGenerating.value = false
}
}
// Function to stop audio playback
function stopTestAudio() {
if (audioPlayer.value) {
audioPlayer.value.pause()
audioPlayer.value.currentTime = 0
}
// Clean up the object URL to prevent memory leaks
if (audioUrl.value) {
URL.revokeObjectURL(audioUrl.value)
audioUrl.value = ''
}
}
// Clean up when component is unmounted
onUnmounted(() => {
if (audioUrl.value) {
URL.revokeObjectURL(audioUrl.value)
}
})
function handleResetVoiceSettings() {
providers.value[providerId] = {
...(providerMetadata.value?.defaultOptions as any),
}
}
</script>
<template>
<ProviderSettingsLayout
:provider-name="providerMetadata?.localizedName" :provider-icon="providerMetadata?.icon"
:on-back="() => router.back()"
>
<div flex="~ col md:row gap-6">
<ProviderSettingsContainer class="w-full md:w-[40%]">
<ProviderBasicSettings
:title="t('settings.pages.providers.common.section.basic.title')"
:description="t('settings.pages.providers.common.section.basic.description')"
:on-reset="handleResetVoiceSettings"
>
<ProviderApiKeyInput v-model="apiKey" :provider-name="providerMetadata?.localizedName" placeholder="sk-" />
<FieldInput
v-model="region"
label="Region"
description="Speech Service region"
placeholder="eastasia"
required
type="text"
/>
</ProviderBasicSettings>
<div flex="~ col gap-6">
<h2 class="text-lg text-neutral-500 md:text-2xl dark:text-neutral-400">
{{ t('settings.pages.providers.common.section.voice.title') }}
</h2>
<div flex="~ col gap-4">
<FieldRange
v-model="similarityBoost"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.simularity-boost.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.simularity-boost.description')"
:min="0" :max="1" :step="0.01"
/>
<FieldRange
v-model="stability"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.stability.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.stability.description')"
:min="0" :max="1" :step="0.01"
/>
<FieldRange
v-model="speed"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.speed.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.speed.description')" :min="0.7"
:max="1.2" :step="0.01"
/>
<FieldRange
v-model="style"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.style.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.style.description')" :min="0"
:max="1" :step="0.01"
/>
<FieldCheckbox
v-model="useSpeakerBoost"
:label="t('settings.pages.providers.provider.elevenlabs.fields.field.speaker-boost.label')"
:description="t('settings.pages.providers.provider.elevenlabs.fields.field.speaker-boost.description')"
/>
</div>
</div>
<ProviderAdvancedSettings :title="t('settings.pages.providers.common.section.advanced.title')">
<ProviderBaseUrlInput
v-model="baseUrl"
:placeholder="providerMetadata?.defaultOptions?.baseUrl as string || ''" required
/>
</ProviderAdvancedSettings>
</ProviderSettingsContainer>
<div flex="~ col gap-6" class="w-full md:w-[60%]">
<div w-full rounded-xl>
<h2 class="mb-4 text-lg text-neutral-500 md:text-2xl dark:text-neutral-400" w-full>
<div class="inline-flex items-center gap-4">
<TestDummyMarker />
<div>
{{ t('settings.pages.providers.provider.elevenlabs.playground.title') }}
</div>
</div>
</h2>
<div flex="~ col gap-4">
<textarea
v-model="testText"
:placeholder="t('settings.pages.providers.provider.elevenlabs.playground.fields.field.input.placeholder')"
border="neutral-100 dark:neutral-800 solid 2 focus:neutral-200 dark:focus:neutral-700"
transition="all duration-250 ease-in-out"
bg="neutral-100 dark:neutral-800 focus:neutral-50 dark:focus:neutral-900"
h-24 w-full rounded-lg px-3 py-2 text-sm outline-none
/>
<div flex="~ col gap-6">
<label grid="~ cols-2 gap-4">
<div>
<div class="flex items-center gap-1 text-sm font-medium">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.language.label') }}
</div>
<div class="text-xs text-neutral-500 dark:text-neutral-400">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.language.description') }}
</div>
</div>
<select
v-model="selectedLanguage"
border="neutral-300 dark:neutral-800 solid 2 focus:neutral-400 dark:focus:neutral-600"
transition="border duration-250 ease-in-out" w-full rounded-lg px-2 py-1 text-nowrap text-sm
outline-none
>
<option v-for="language in speechStore.availableLanguages" :key="language" :value="language">
{{ language }}
</option>
</select>
</label>
<label grid="~ cols-2 gap-4">
<div>
<div class="flex items-center gap-1 text-sm font-medium">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.voice.label') }}
</div>
<div class="text-xs text-neutral-500 dark:text-neutral-400">
{{ t('settings.pages.providers.provider.elevenlabs.playground.fields.field.voice.description') }}
</div>
</div>
<select
v-model="selectedVoice"
border="neutral-300 dark:neutral-800 solid 2 focus:neutral-400 dark:focus:neutral-600"
transition="border duration-250 ease-in-out" w-full rounded-lg px-2 py-1 text-nowrap text-sm
outline-none
>
<option v-for="voice in availableVoices" :key="voice.id" :value="voice.name">
{{ voice.name }}
</option>
</select>
</label>
</div>
<div flex="~ row" gap-4>
<button
border="neutral-800 dark:neutral-200 solid 2" transition="border duration-250 ease-in-out"
rounded-lg px-4 text="neutral-100 dark:neutral-900" py-2 text-sm
:disabled="isGenerating || !testText.trim() || !apiKey"
:class="{ 'opacity-50 cursor-not-allowed': isGenerating || !testText.trim() || !apiKey }"
bg="neutral-700 dark:neutral-300" @click="generateTestSpeech"
>
<div flex="~ row" items-center gap-2>
<div i-solar:play-circle-bold-duotone />
<span>{{ isGenerating ? t('settings.pages.providers.provider.elevenlabs.playground.buttons.button.test-voice.generating') : t('settings.pages.providers.provider.elevenlabs.playground.buttons.button.test-voice.label') }}</span>
</div>
</button>
<button
v-if="audioUrl" border="primary-300 dark:primary-800 solid 2"
transition="border duration-250 ease-in-out" rounded-lg px-4 py-2 text-sm @click="stopTestAudio"
>
<div flex="~ row" items-center gap-2>
<div i-solar:stop-circle-bold-duotone />
<span>Stop</span>
</div>
</button>
</div>
<div v-if="!apiKey" class="mt-2 text-sm text-red-500">
{{ t('settings.pages.providers.provider.elevenlabs.playground.validation.error-missing-api-key') }}
</div>
<div v-if="errorMessage" class="mt-2 text-sm text-red-500">
{{ errorMessage }}
</div>
<audio v-if="audioUrl" ref="audioPlayer" :src="audioUrl" controls class="mt-2 w-full" />
</div>
</div>
</div>
</div>
</ProviderSettingsLayout>
</template>
+11 -11
View File
@@ -2,7 +2,7 @@
"name": "airi-vtuber",
"type": "module",
"private": true,
"packageManager": "pnpm@10.6.3",
"packageManager": "pnpm@10.6.4",
"description": "LLM powered virtual character",
"author": {
"name": "Neko Ayaka",
@@ -46,15 +46,15 @@
"eslint-plugin-cypress": "^4.2.0",
"eslint-plugin-format": "^1.0.1",
"lint-staged": "^15.5.0",
"rollup": "^4.35.0",
"rollup": "^4.36.0",
"simple-git-hooks": "^2.11.1",
"taze": "^18.7.1",
"taze": "^19.0.2",
"typescript": "~5.8.2",
"unbuild": "3.0.0-rc.11",
"unocss": "^66.1.0-beta.5",
"vite": "^6.2.2",
"vite-plugin-inspect": "^11.0.0",
"vitest": "^3.0.8"
"vitest": "^3.0.9"
},
"workspaces": [
"packages/**",
@@ -66,14 +66,14 @@
"pnpm": {
"neverBuiltDependencies": [],
"overrides": {
"array-flatten": "npm:@nolyfill/array-flatten@^1",
"array-flatten": "npm:@nolyfill/array-flatten@^1.0.44",
"axios": "npm:feaxios@^0.0.23",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1"
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"isarray": "npm:@nolyfill/isarray@^1.0.44",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1.0.44",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1.0.44",
"side-channel": "npm:@nolyfill/side-channel@^1.0.44",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1.0.44"
}
},
"simple-git-hooks": {
+5 -5
View File
@@ -74,7 +74,7 @@
"apache-arrow": "^19.0.1",
"date-fns": "^4.1.0",
"defu": "^6.1.4",
"drizzle-orm": "^0.40.0",
"drizzle-orm": "^0.40.1",
"es-toolkit": "^1.33.0"
},
"devDependencies": {
@@ -82,18 +82,18 @@
"@types/d3": "^7.4.3",
"@types/d3-force": "^3.0.10",
"@unocss/reset": "^66.1.0-beta.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "^3.0.8",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/browser": "^3.0.9",
"@vueuse/core": "^13.0.0",
"d3": "^7.9.0",
"d3-force": "^3.0.0",
"drizzle-kit": "^0.30.5",
"playwright": "^1.51.0",
"playwright": "^1.51.1",
"superjson": "^2.2.2",
"unplugin-vue-router": "^0.12.0",
"vite": "^6.2.2",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.8"
"vue-tsc": "^3.0.0-alpha.2"
}
}
+1 -1
View File
@@ -67,7 +67,7 @@
"apache-arrow": "^19.0.1",
"date-fns": "^4.1.0",
"defu": "^6.1.4",
"drizzle-orm": "^0.40.0",
"drizzle-orm": "^0.40.1",
"es-toolkit": "^1.33.0"
},
"devDependencies": {
+2 -2
View File
@@ -63,10 +63,10 @@
"devDependencies": {
"@iconify-json/solar": "^1.2.2",
"@unocss/reset": "^66.1.0-beta.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue": "^5.2.3",
"@vueuse/core": "^13.0.0",
"vite": "^6.2.2",
"vue": "^3.5.13",
"vue-tsc": "^2.2.8"
"vue-tsc": "^3.0.0-alpha.2"
}
}
+1 -1
View File
@@ -66,7 +66,7 @@
"@proj-airi/provider-transformers": "workspace:^",
"@proj-airi/utils-transformers": "workspace:^",
"@unocss/reset": "^66.1.0-beta.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue": "^5.2.3",
"@xsai/embed": "catalog:",
"histoire": "1.0.0-alpha.2",
"unocss": "^66.1.0-beta.5",
@@ -145,8 +145,8 @@ function togglePlayback() {
]"
@click="togglePlayback"
>
<div v-if="currentlyPlayingId === voice.id" i-solar:pause-circle-bold-duotone class="text-xl" />
<div v-else i-solar:play-circle-bold-duotone class="text-xl" />
<div v-if="currentlyPlayingId === voice.id" class="i-solar:pause-circle-bold-duotone text-xl text-neutral-400 dark:text-neutral-500" />
<div v-else class="i-solar:play-circle-bold-duotone text-xl text-neutral-400 dark:text-neutral-500" />
</button>
<div
v-else
@@ -33,7 +33,7 @@ export const useSpeechStore = defineStore('speech', () => {
const supportsSSML = computed(() => {
// Currently only ElevenLabs and some other providers support SSML
return ['elevenlabs', 'microsoft', 'google'].includes(activeSpeechProvider.value)
return ['elevenlabs', 'microsoft-speech', 'azure-speech', 'google'].includes(activeSpeechProvider.value)
})
const availableLanguages = computed(() => {
@@ -58,7 +58,7 @@ export const useSpeechStore = defineStore('speech', () => {
function isSpeechProvider(providerId: string): boolean {
// This is a simplified check - in a real implementation, you might have a more robust way
// to determine if a provider supports speech synthesis
return ['elevenlabs', 'microsoft', 'google', 'amazon'].includes(providerId)
return ['elevenlabs', 'microsoft-speech', 'azure-speech', 'google', 'amazon'].includes(providerId)
}
function resetVoiceSettings() {
+62 -3
View File
@@ -1,4 +1,3 @@
import type { UnElevenLabsOptions } from '@xsai-ext/providers-local'
import type {
ChatProvider,
ChatProviderWithExtraOptions,
@@ -9,6 +8,8 @@ import type {
TranscriptionProvider,
TranscriptionProviderWithExtraOptions,
} from '@xsai-ext/shared-providers'
import type { UnElevenLabsOptions } from './fix/elevenlabs'
import type { UnMicrosoftOptions } from './fix/microsoft'
import type { VoiceProviderWithExtraOptions } from './fix/voice'
import { useLocalStorage } from '@vueuse/core'
@@ -33,7 +34,7 @@ import { useI18n } from 'vue-i18n'
import { createUnElevenLabs } from './fix/elevenlabs'
import { listVoices } from './fix/list-voices'
// import { createUnMicrosoft } from './fix/microsoft'
import { createUnMicrosoft } from './fix/microsoft'
export interface ProviderMetadata {
id: string
@@ -314,7 +315,6 @@ export const useProvidersStore = defineStore('providers', () => {
stability: 0.5,
},
},
// TODO: UnElevenLabsOptions
createProvider: config => createUnElevenLabs(config.apiKey as string, config.baseUrl as string) as SpeechProviderWithExtraOptions<string, UnElevenLabsOptions>,
capabilities: {
listModels: async () => {
@@ -480,6 +480,39 @@ export const useProvidersStore = defineStore('providers', () => {
},
},
},
'microsoft-speech': {
id: 'microsoft-speech',
nameKey: 'settings.pages.providers.provider.microsoft-speech.title',
name: 'Microsoft / Azure Speech',
descriptionKey: 'settings.pages.providers.provider.microsoft-speech.description',
description: 'speech.microsoft.com',
iconColor: 'i-lobe-icons:microsoft-color',
defaultOptions: {
baseUrl: 'https://unspeech.hyp3r.link/v1/',
},
createProvider: config => createUnMicrosoft(config.apiKey as string, config.baseUrl as string) as SpeechProviderWithExtraOptions<string, UnMicrosoftOptions>,
capabilities: {
listModels: async () => {
return []
},
listVoices: async (config) => {
const provider = createUnMicrosoft(config.apiKey as string, config.baseUrl as string) as VoiceProviderWithExtraOptions<UnMicrosoftOptions>
const voices = await listVoices({
...provider.voice({ region: config.region as string }),
})
return voices.map((voice) => {
return {
id: voice.id,
name: voice.name,
provider: 'microsoft-speech',
previewURL: voice.preview_audio_url,
}
})
},
},
},
'cloudflare-workers-ai': {
id: 'cloudflare-workers-ai',
nameKey: 'settings.pages.providers.provider.cloudflare-workers-ai.title',
@@ -573,6 +606,8 @@ export const useProvidersStore = defineStore('providers', () => {
return !!config.apiKey
case 'fireworks-ai':
return !!config.apiKey
case 'microsoft-speech':
return !!config.apiKey && !!config.region
case 'cloudflare-workers-ai':
return !!config.apiKey
case 'mistral-ai':
@@ -731,6 +766,27 @@ export const useProvidersStore = defineStore('providers', () => {
return availableProviders.value.map(id => getProviderMetadata(id))
})
const availableTextGenerationsProvidersMetadata = computed(() => {
return availableProvidersMetadata.value.filter((metadata) => {
const provider = getProviderInstance(metadata.id)
return 'chat' in provider && typeof provider.chat === 'function'
})
})
const availableAudioTranscriptionProvidersMetadata = computed(() => {
return availableProvidersMetadata.value.filter((metadata) => {
const provider = getProviderInstance(metadata.id)
return 'transcription' in provider && typeof provider.transcription === 'function'
})
})
const availableAudioSpeechProvidersMetadata = computed(() => {
return availableProvidersMetadata.value.filter((metadata) => {
const provider = getProviderInstance(metadata.id)
return 'speech' in provider && typeof provider.speech === 'function'
})
})
function getProviderConfig(providerId: string) {
return providerCredentials.value[providerId]
}
@@ -754,5 +810,8 @@ export const useProvidersStore = defineStore('providers', () => {
loadModelsForConfiguredProviders,
getProviderInstance,
availableProvidersMetadata,
availableTextGenerationsProvidersMetadata,
availableAudioSpeechProvidersMetadata,
availableAudioTranscriptionProvidersMetadata,
}
})
+2 -2
View File
@@ -35,10 +35,10 @@
},
"devDependencies": {
"@unocss/reset": "^66.1.0-beta.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue": "^5.2.3",
"unplugin-vue-router": "^0.12.0",
"vite-plugin-vue-devtools": "^7.7.2",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.8"
"vue-tsc": "^3.0.0-alpha.2"
}
}
+548 -314
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -19,7 +19,7 @@
},
"dependencies": {
"@discordjs/voice": "^0.18.0",
"@dotenvx/dotenvx": "^1.38.5",
"@dotenvx/dotenvx": "^1.39.0",
"@guiiai/logg": "^1.0.7",
"@huggingface/transformers": "^3.4.0",
"@proj-airi/server-sdk": "workspace:^",
+3 -3
View File
@@ -14,7 +14,7 @@
"dependencies": {
"@guiiai/logg": "^1.0.7",
"@proj-airi/server-sdk": "^0.3.6",
"awilix": "^12.0.4",
"awilix": "^12.0.5",
"es-toolkit": "^1.33.0",
"eventemitter3": "^5.0.1",
"minecraft-data": "^3.84.1",
@@ -35,10 +35,10 @@
"valibot": "1.0.0-beta.9",
"vec3": "^0.1.10",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.3"
"zod-to-json-schema": "^3.24.4"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.38.5",
"@dotenvx/dotenvx": "^1.39.0",
"dotenv": "^16.4.7"
}
}
+3 -3
View File
@@ -20,7 +20,7 @@
"db:push": "drizzle-kit push"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.38.5",
"@dotenvx/dotenvx": "^1.39.0",
"@grammyjs/files": "^1.1.1",
"@guiiai/logg": "^1.0.7",
"@xsai-ext/providers-cloud": "catalog:",
@@ -28,10 +28,10 @@
"@xsai/shared-chat": "catalog:",
"@xsai/tool": "catalog:",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.40.0",
"drizzle-orm": "^0.40.1",
"es-toolkit": "^1.33.0",
"grammy": "^1.35.0",
"pg": "^8.14.0",
"pg": "^8.14.1",
"sharp": "^0.33.5",
"telegram": "^2.26.22",
"valibot": "1.0.0-beta.9"
+2 -2
View File
@@ -20,11 +20,11 @@
"h3": "^1.15.1",
"listhen": "^1.9.0",
"ofetch": "^1.4.1",
"playwright": "^1.51.0",
"playwright": "^1.51.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^18.19.80",
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}