Check Point
Rolling release / release (push) Successful in 6m36s

This commit is contained in:
2026-09-12 09:07:09 -04:00
parent e9040d110a
commit a4073b9020
63 changed files with 2459 additions and 632 deletions
+8
View File
@@ -0,0 +1,8 @@
import { SETTINGS_FIELDS, voiceSettings } from '../daemon/voice-settings.js';
import { ttsConfiguration } from '../daemon/tts-config.js';
import { QvacVoiceAdapter } from '../daemon/voice-adapters.js';
const settings = voiceSettings({ voiceId: 'M2', ttsSpeed: 1.2 });
const adapter = new QvacVoiceAdapter({ role: 'tts', settings });
if (adapter.ttsConfig.config.voice !== 'M2') throw new Error('Voice setting was not propagated');
if (ttsConfiguration(settings).config.ttsSpeed !== 1.2) throw new Error('Speech speed was not propagated');
console.log(`Settings runtime smoke passed: ${SETTINGS_FIELDS.length} fields, voice ${adapter.ttsConfig.config.voice}`);