feat(voip): add Gacrux to the Gemini Live voice picker#1349
Merged
Conversation
Adds the "Gacrux — Mature" prebuilt voice to the per-agent VoIP voice selector (and the shared AgentWorkspace per-session picker, which reads the same list). Updated in lockstep across the three mirrored sources so the frontend↔backend parity test stays green: - src/frontend/src/constants/voices.js — single frontend source of truth - src/backend/config.py GEMINI_VOICE_NAMES — write-validation allowlist + read-path fallback - tests/unit/test_28_voip_voice_config.py — hardcoded parity tuple Follow-up to #1323 (per-agent VoIP config panel + persisted voice). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
dolho
approved these changes
Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds the Gacrux — Mature prebuilt Gemini Live voice to the per-agent VoIP voice selector on the Sharing tab (
VoipChannelPanel.vue), which shares its list with the AgentWorkspace per-session picker.Why
The VoIP voice picker (added in #1323) shipped with 6 voices; Gacrux was missing. This adds it.
Changes
The voice list is mirrored across three sources that a parity test keeps in sync, so all three move together:
src/frontend/src/constants/voices.js— single frontend source of truth (feeds both the VoIP picker and the AgentWorkspace picker)src/backend/config.pyGEMINI_VOICE_NAMES— write-validation allowlist + read-path fallbacktests/unit/test_28_voip_voice_config.py— hardcoded parity tupleAppended (not reordered) so
tuple(ids) == GEMINI_VOICE_NAMESdeclaration-order parity holds;DEFAULT_VOICE_NAMEunchanged (Kore).Verification
Replicated the parity test's exact regex locally: frontend ids
==backend tuple, default agrees,Gacruxpresent in both. Full pytest run lands in CI (local shell lacks the backend venv).Follow-up to #1323.