File size: 8,041 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | import type { TTSProviderId } from '@/lib/audio/types';
import { isCustomTTSProvider } from '@/lib/audio/types';
import type { AgentConfig } from '@/lib/orchestration/registry/types';
import { TTS_PROVIDERS } from '@/lib/audio/constants';
import {
VOXCPM_TTS_PROVIDER_ID,
getVoxCPMProfileVoiceId,
normalizeVoxCPMBackend,
voxCPMBackendSupportsReferenceAudio,
} from '@/lib/audio/voxcpm';
export interface ResolvedVoice {
providerId: TTSProviderId;
modelId?: string;
voiceId: string;
}
/**
* Resolve the TTS provider + voice for an agent.
* 1. If agent has voiceConfig and the voice is still valid, use it
* 2. Otherwise, use the first available provider + deterministic voice by index
*/
export function resolveAgentVoice(
agent: AgentConfig,
agentIndex: number,
availableProviders: ProviderWithVoices[],
): ResolvedVoice {
// Agent-specific config
if (agent.voiceConfig) {
// Browser-native voices are dynamic (not in static registry), so skip validation
if (agent.voiceConfig.providerId === 'browser-native-tts') {
return {
providerId: agent.voiceConfig.providerId,
modelId: agent.voiceConfig.modelId,
voiceId: agent.voiceConfig.voiceId,
};
}
const list = getServerVoiceList(agent.voiceConfig.providerId);
// Also check available providers (covers custom providers with dynamic voice lists)
const fromAvailable = availableProviders
.find((p) => p.providerId === agent.voiceConfig!.providerId)
?.voices.map((v) => v.id);
const allVoiceIds = new Set([...list, ...(fromAvailable || [])]);
if (allVoiceIds.has(agent.voiceConfig.voiceId)) {
return {
providerId: agent.voiceConfig.providerId,
modelId: agent.voiceConfig.modelId,
voiceId: agent.voiceConfig.voiceId,
};
}
}
// Fallback: first available provider, deterministic voice
if (availableProviders.length > 0) {
const first = availableProviders[0];
return {
providerId: first.providerId,
voiceId: first.voices[agentIndex % first.voices.length].id,
};
}
return { providerId: 'browser-native-tts', voiceId: 'default' };
}
/**
* Get the list of voice IDs for a TTS provider.
* For browser-native-tts, returns empty (browser voices are dynamic).
* For custom providers, reads from ttsProvidersConfig.customVoices.
*/
export function getServerVoiceList(
providerId: TTSProviderId,
ttsProvidersConfig?: Record<string, Record<string, unknown>>,
): string[] {
if (providerId === 'browser-native-tts') return [];
if (isCustomTTSProvider(providerId) && ttsProvidersConfig) {
const customVoices = ttsProvidersConfig[providerId]?.customVoices as
| Array<{ id: string }>
| undefined;
return customVoices?.map((v) => v.id) || [];
}
const provider = TTS_PROVIDERS[providerId as keyof typeof TTS_PROVIDERS];
if (!provider) return [];
return provider.voices.map((v) => v.id);
}
export interface ModelVoiceGroup {
modelId: string;
modelName: string;
voices: Array<{ id: string; name: string; language?: string }>;
}
export interface ProviderWithVoices {
providerId: TTSProviderId;
providerName: string;
voices: Array<{ id: string; name: string; language?: string }>;
modelGroups: ModelVoiceGroup[]; // voices grouped by model
}
/**
* Get all available providers and their voices for the voice picker UI.
* A provider is available if it has an API key or is server-configured.
* Custom providers are available if they have voices configured.
* Browser-native-tts is excluded (no static voice list).
*/
export function getAvailableProvidersWithVoices(
ttsProvidersConfig: Record<
string,
{
apiKey?: string;
enabled?: boolean;
isServerConfigured?: boolean;
serverBaseUrl?: string;
baseUrl?: string;
modelId?: string;
providerOptions?: Record<string, unknown>;
customName?: string;
customVoices?: Array<{ id: string; name: string }>;
}
>,
voxcpmProfiles: Array<{ id: string; name: string; kind?: string }> = [],
): ProviderWithVoices[] {
const result: ProviderWithVoices[] = [];
// Built-in providers
for (const [id, config] of Object.entries(TTS_PROVIDERS)) {
const providerId = id as TTSProviderId;
if (providerId === 'browser-native-tts') continue;
if (config.voices.length === 0) continue;
const providerConfig = ttsProvidersConfig[providerId];
const hasApiKey = providerConfig?.apiKey && providerConfig.apiKey.trim().length > 0;
const isServerConfigured = providerConfig?.isServerConfigured === true;
const isLocalVoxCPM =
providerId === VOXCPM_TTS_PROVIDER_ID &&
!!(providerConfig?.serverBaseUrl?.trim() || providerConfig?.baseUrl?.trim());
const visibleVoxCPMProfiles =
providerId === VOXCPM_TTS_PROVIDER_ID
? voxcpmProfiles.filter((profile) => {
const backend = normalizeVoxCPMBackend(providerConfig?.providerOptions?.backend);
return profile.kind !== 'clone' || voxCPMBackendSupportsReferenceAudio(backend);
})
: [];
if (hasApiKey || isServerConfigured || isLocalVoxCPM) {
const allVoices = [
...config.voices.map((v) => ({
id: v.id,
name: v.name,
language: v.language,
})),
...(providerId === VOXCPM_TTS_PROVIDER_ID
? visibleVoxCPMProfiles.map((profile) => ({
id: getVoxCPMProfileVoiceId(profile.id),
name: profile.name,
language: 'auto',
}))
: []),
];
// Build model groups
const modelGroups: ModelVoiceGroup[] = [];
if (config.models.length > 0) {
for (const model of config.models) {
const compatibleVoices = config.voices
.filter((v) => !v.compatibleModels || v.compatibleModels.includes(model.id))
.map((v) => ({ id: v.id, name: v.name, language: v.language }));
if (providerId === VOXCPM_TTS_PROVIDER_ID) {
compatibleVoices.push(
...visibleVoxCPMProfiles.map((profile) => ({
id: getVoxCPMProfileVoiceId(profile.id),
name: profile.name,
language: 'auto',
})),
);
}
modelGroups.push({
modelId: model.id,
modelName: model.name,
voices: compatibleVoices,
});
}
} else {
modelGroups.push({
modelId: '',
modelName: config.name,
voices: allVoices,
});
}
result.push({
providerId,
providerName: config.name,
voices: allVoices,
modelGroups,
});
}
}
// Custom providers
for (const [id, providerConfig] of Object.entries(ttsProvidersConfig)) {
if (!isCustomTTSProvider(id)) continue;
const customVoices = providerConfig.customVoices || [];
if (customVoices.length === 0) continue;
const providerId = id as TTSProviderId;
const providerName = providerConfig.customName || id;
const voices = customVoices.map((v) => ({ id: v.id, name: v.name }));
result.push({
providerId,
providerName,
voices,
modelGroups: [{ modelId: '', modelName: providerName, voices }],
});
}
return result;
}
/**
* Find a voice display name across all providers.
*/
export function findVoiceDisplayName(
providerId: TTSProviderId,
voiceId: string,
ttsProvidersConfig?: Record<string, Record<string, unknown>>,
): string {
if (isCustomTTSProvider(providerId) && ttsProvidersConfig) {
const customVoices = ttsProvidersConfig[providerId]?.customVoices as
| Array<{ id: string; name: string }>
| undefined;
const voice = customVoices?.find((v) => v.id === voiceId);
return voice?.name ?? voiceId;
}
const provider = TTS_PROVIDERS[providerId as keyof typeof TTS_PROVIDERS];
if (!provider) return voiceId;
const voice = provider.voices.find((v) => v.id === voiceId);
return voice?.name ?? voiceId;
}
|