File size: 12,060 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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
import { useCallback, useEffect, useRef } from 'react';
import { useSettingsStore } from '@/lib/store/settings';
import { useBrowserTTS } from '@/lib/hooks/use-browser-tts';
import {
resolveAgentVoice,
getAvailableProvidersWithVoices,
type ResolvedVoice,
} from '@/lib/audio/voice-resolver';
import { getVoxCPMProviderOptions, useVoxCPMVoiceProfiles } from '@/lib/audio/voxcpm-voices';
import type { AgentConfig } from '@/lib/orchestration/registry/types';
import type { TTSProviderId } from '@/lib/audio/types';
import type { AudioIndicatorState } from '@/components/roundtable/audio-indicator';
import { useI18n } from '@/lib/hooks/use-i18n';
interface DiscussionTTSOptions {
enabled: boolean;
agents: AgentConfig[];
onAudioStateChange?: (agentId: string | null, state: AudioIndicatorState) => void;
}
interface QueueItem {
messageId: string;
partId: string;
text: string;
agentId: string | null;
providerId: TTSProviderId;
modelId?: string;
voiceId: string;
}
export function useDiscussionTTS({ enabled, agents, onAudioStateChange }: DiscussionTTSOptions) {
const { locale } = useI18n();
const ttsProvidersConfig = useSettingsStore((s) => s.ttsProvidersConfig);
const ttsSpeed = useSettingsStore((s) => s.ttsSpeed);
const ttsMuted = useSettingsStore((s) => s.ttsMuted);
const ttsVolume = useSettingsStore((s) => s.ttsVolume);
const playbackSpeed = useSettingsStore((s) => s.playbackSpeed);
// Global lecture voice — used as fallback for teacher agent
const globalTtsProviderId = useSettingsStore((s) => s.ttsProviderId);
const globalTtsVoice = useSettingsStore((s) => s.ttsVoice);
const { profiles: voxcpmProfiles } = useVoxCPMVoiceProfiles();
const queueRef = useRef<QueueItem[]>([]);
const isPlayingRef = useRef(false);
const pausedRef = useRef(false);
/** Tracks which TTS provider is currently speaking (for pause/resume delegation) */
const currentProviderRef = useRef<TTSProviderId | null>(null);
const segmentDoneCounterRef = useRef(0);
const abortControllerRef = useRef<AbortController | null>(null);
const audioRef = useRef<HTMLAudioElement | null>(null);
const onAudioStateChangeRef = useRef(onAudioStateChange);
onAudioStateChangeRef.current = onAudioStateChange;
const processQueueRef = useRef<() => void>(() => {});
const {
speak: browserSpeak,
pause: browserPause,
resume: browserResume,
cancel: browserCancel,
} = useBrowserTTS({
rate: ttsSpeed,
onEnd: () => {
isPlayingRef.current = false;
segmentDoneCounterRef.current++;
onAudioStateChangeRef.current?.(null, 'idle');
// Don't advance queue while paused — resume() will kick-start it
if (!pausedRef.current) {
processQueueRef.current();
}
},
});
const browserCancelRef = useRef(browserCancel);
browserCancelRef.current = browserCancel;
const browserSpeakRef = useRef(browserSpeak);
browserSpeakRef.current = browserSpeak;
const browserPauseRef = useRef(browserPause);
browserPauseRef.current = browserPause;
const browserResumeRef = useRef(browserResume);
browserResumeRef.current = browserResume;
// Build agent index map for deterministic voice resolution
const agentIndexMap = useRef<Map<string, number>>(new Map());
useEffect(() => {
const map = new Map<string, number>();
agents.forEach((agent, i) => map.set(agent.id, i));
agentIndexMap.current = map;
}, [agents]);
const resolveVoiceForAgent = useCallback(
(agentId: string | null): ResolvedVoice => {
const providers = getAvailableProvidersWithVoices(ttsProvidersConfig, voxcpmProfiles);
if (!agentId) {
if (providers.length > 0) {
return {
providerId: providers[0].providerId,
voiceId: providers[0].voices[0]?.id ?? 'default',
};
}
return { providerId: 'browser-native-tts', voiceId: 'default' };
}
const agent = agents.find((a) => a.id === agentId);
if (!agent) {
if (providers.length > 0) {
return {
providerId: providers[0].providerId,
voiceId: providers[0].voices[0]?.id ?? 'default',
modelId: undefined,
};
}
return { providerId: 'browser-native-tts', voiceId: 'default', modelId: undefined };
}
// Teacher: always use global lecture voice (single source of truth with settings)
if (agent.role === 'teacher') {
return {
providerId: globalTtsProviderId,
voiceId: globalTtsVoice,
modelId: ttsProvidersConfig[globalTtsProviderId]?.modelId,
};
}
const index = agentIndexMap.current.get(agentId) ?? 0;
return resolveAgentVoice(agent, index, providers);
},
[agents, ttsProvidersConfig, voxcpmProfiles, globalTtsProviderId, globalTtsVoice],
);
const processQueue = useCallback(async () => {
if (pausedRef.current) return; // Don't advance while paused
if (isPlayingRef.current || queueRef.current.length === 0) return;
if (!enabled || ttsMuted) {
queueRef.current = [];
return;
}
isPlayingRef.current = true;
const item = queueRef.current.shift()!;
// Browser TTS
if (item.providerId === 'browser-native-tts') {
currentProviderRef.current = item.providerId;
onAudioStateChangeRef.current?.(item.agentId, 'playing');
browserSpeakRef.current(item.text, item.voiceId);
return;
}
// Server TTS — use the item's provider, not the global one
currentProviderRef.current = item.providerId;
onAudioStateChangeRef.current?.(item.agentId, 'generating');
const controller = new AbortController();
abortControllerRef.current = controller;
try {
const providerConfig = ttsProvidersConfig[item.providerId];
const agent = item.agentId ? agents.find((a) => a.id === item.agentId) : undefined;
const providerOptions =
item.providerId === 'voxcpm-tts'
? {
...(providerConfig?.providerOptions || {}),
...(await getVoxCPMProviderOptions(item.voiceId, {
agentName: agent?.name,
role: agent?.role,
persona: agent?.persona,
locale,
})),
}
: undefined;
const res = await fetch('/api/generate/tts', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
text: item.text,
audioId: item.partId,
ttsProviderId: item.providerId,
ttsModelId: item.modelId || providerConfig?.modelId,
ttsVoice: item.voiceId,
ttsSpeed: ttsSpeed,
ttsApiKey: providerConfig?.apiKey,
ttsBaseUrl:
providerConfig?.serverBaseUrl ||
providerConfig?.baseUrl ||
providerConfig?.customDefaultBaseUrl,
ttsProviderOptions: providerOptions,
}),
signal: controller.signal,
});
if (!res.ok) throw new Error(`TTS API error: ${res.status}`);
const data = await res.json();
if (!data.base64) throw new Error('No audio in response');
const audioUrl = `data:audio/${data.format || 'mp3'};base64,${data.base64}`;
const audio = new Audio(audioUrl);
audio.playbackRate = playbackSpeed;
audio.volume = ttsMuted ? 0 : ttsVolume;
audioRef.current = audio;
audio.addEventListener('ended', () => {
audioRef.current = null;
isPlayingRef.current = false;
segmentDoneCounterRef.current++;
onAudioStateChangeRef.current?.(item.agentId, 'idle');
if (!pausedRef.current) {
queueMicrotask(() => processQueueRef.current());
}
});
audio.addEventListener('error', () => {
audioRef.current = null;
isPlayingRef.current = false;
segmentDoneCounterRef.current++;
onAudioStateChangeRef.current?.(item.agentId, 'idle');
if (!pausedRef.current) {
queueMicrotask(() => processQueueRef.current());
}
});
// If paused during TTS generation, keep audio ready but don't play
if (pausedRef.current) {
onAudioStateChangeRef.current?.(item.agentId, 'playing');
audio.pause();
return;
}
onAudioStateChangeRef.current?.(item.agentId, 'playing');
await audio.play();
} catch (err) {
if ((err as Error).name !== 'AbortError') {
console.error('[DiscussionTTS] TTS generation failed:', err);
}
audioRef.current = null;
isPlayingRef.current = false;
segmentDoneCounterRef.current++;
onAudioStateChangeRef.current?.(item.agentId, 'idle');
if (!pausedRef.current) {
queueMicrotask(() => processQueueRef.current());
}
}
}, [agents, enabled, locale, ttsMuted, ttsVolume, ttsProvidersConfig, ttsSpeed, playbackSpeed]);
processQueueRef.current = processQueue;
const handleSegmentSealed = useCallback(
(messageId: string, partId: string, fullText: string, agentId: string | null) => {
if (!enabled || ttsMuted || !fullText.trim()) return;
const { providerId, modelId, voiceId } = resolveVoiceForAgent(agentId);
queueRef.current.push({
messageId,
partId,
text: fullText,
agentId,
providerId,
modelId,
voiceId,
});
if (!isPlayingRef.current) {
processQueueRef.current();
} else if (providerId !== 'browser-native-tts') {
onAudioStateChangeRef.current?.(agentId, 'generating');
}
},
[enabled, ttsMuted, resolveVoiceForAgent],
);
const cleanup = useCallback(() => {
pausedRef.current = false;
currentProviderRef.current = null;
abortControllerRef.current?.abort();
abortControllerRef.current = null;
if (audioRef.current) {
audioRef.current.pause();
audioRef.current.src = '';
audioRef.current = null;
}
browserCancelRef.current();
queueRef.current = [];
isPlayingRef.current = false;
segmentDoneCounterRef.current = 0;
onAudioStateChangeRef.current?.(null, 'idle');
}, []);
/** Pause TTS audio (browser-native or server). Does NOT stop the SSE stream. */
const pause = useCallback(() => {
if (pausedRef.current) return;
pausedRef.current = true;
if (currentProviderRef.current === 'browser-native-tts') {
browserPauseRef.current();
} else if (audioRef.current && !audioRef.current.paused) {
audioRef.current.pause();
}
}, []);
/** Resume TTS audio. If the previous utterance already ended while paused, advance the queue. */
const resume = useCallback(() => {
if (!pausedRef.current) return;
pausedRef.current = false;
if (currentProviderRef.current === 'browser-native-tts') {
browserResumeRef.current();
} else if (audioRef.current && audioRef.current.paused) {
audioRef.current.play();
} else if (!isPlayingRef.current) {
// Audio finished while paused — kick-start the queue
processQueueRef.current();
}
}, []);
// Sync playbackSpeed to currently playing audio in real-time
useEffect(() => {
if (audioRef.current) {
audioRef.current.playbackRate = playbackSpeed;
}
}, [playbackSpeed]);
// Sync volume and mute to currently playing audio in real-time
useEffect(() => {
if (audioRef.current) {
audioRef.current.volume = ttsMuted ? 0 : ttsVolume;
}
}, [ttsVolume, ttsMuted]);
useEffect(() => cleanup, [cleanup]);
/**
* Returns true when TTS audio for the *current* segment is still playing.
* Uses a monotonic counter so the buffer releases as soon as one segment's
* audio finishes, even if the next segment starts immediately.
*/
const shouldHold = useCallback(() => {
return {
holding: isPlayingRef.current || queueRef.current.length > 0,
segmentDone: segmentDoneCounterRef.current,
};
}, []);
return {
handleSegmentSealed,
cleanup,
pause,
resume,
shouldHold,
};
}
|