fix(scripts): align qwen3tts migration script with the tts-slot model#979
Merged
Merged
Conversation
The deployed design (#976) serves Qwen3 from the canonical `tts` slot via the voice.tts capability selection — there is no separate `qwen3tts` slot. The migration script's Guard 1 checked /api/slots/qwen3tts (always 404 on this model) and Guard 3 checked a "kokoro fallback on :8084" that no longer exists once the tts slot serves Qwen3. - Guard 1 now checks the `tts` slot is ready AND serving model qwen3-tts. - Dropped the invalid kokoro-fallback guard. - Fixed the header + port-context comments (Qwen3 runs in the tts slot on :8084 via the :8080 front door, not on :8095 — no port collision). Verified: bash -n clean; --dry-run passes against the live migrated CT105 (all guards pass, steps idempotent). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
The deployed design (#976) serves Qwen3 from the canonical
ttsslot via thevoice.ttscapability selection — there is no separateqwen3ttsslot. The migration script (#974, written in parallel) assumed the other model, so its guards were wrong.ttsslot isreadyAND servingqwen3-tts(was/api/slots/qwen3tts, always 404 here).Verified:
bash -nclean;--dry-runpasses against the live (already-migrated) CT105 — all guards pass, steps idempotent.🤖 Generated with Claude Code