Fix Speaches STT and custom TTS voices#35
Merged
a6kme merged 1 commit intodograh-hq:mainfrom Apr 6, 2026
Merged
Conversation
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.
Please describe the changes in your PR. If it is addressing an issue, please reference that as well.
What changed
This updates the Speaches adapters in
pipecatso they match a stock Speaches server without requiring server-side compatibility shims.Why
Speaches exposes OpenAI-compatible HTTP endpoints for both transcription and speech generation, but the previous adapters had two integration mismatches:
/v1/audio/transcriptionsvoicethrough OpenAI's fixed voice whitelist, which breaks custom Speaches voices such asfettahImpact
Dograh deployments pointing at a Speaches server can now:
Root cause
The Speaches adapters were inheriting behavior tailored to Dograh/OpenAI transport assumptions rather than Speaches' actual OpenAI-compatible API surface.
Validation
python3 -m py_compileon the updated adapter and test filesCompanion Dograh PR: <DOGRAH_PR_URL>
Related discussion: <DISCUSSION_URL>
This PR contains the adapter-level Speaches fixes. The Dograh PR depends on this landing first because it updates the service wiring and submodule pointer.