fix: correct log messages in Kokoro TTS connector from ElevenLabs to Kokoro#2152
Open
giwaov wants to merge 1 commit intoOpenMind:mainfrom
Open
fix: correct log messages in Kokoro TTS connector from ElevenLabs to Kokoro#2152giwaov wants to merge 1 commit intoOpenMind:mainfrom
giwaov wants to merge 1 commit intoOpenMind:mainfrom
Conversation
…Kokoro The Kokoro TTS connector (kokoro_tts.py) contained copy-paste errors from the ElevenLabs connector, where log messages and docstrings incorrectly referenced 'Elevenlabs TTS' instead of 'Kokoro TTS': - Line 135: Changed 'Elevenlabs TTS Zenoh client opened' to 'Kokoro TTS Zenoh client opened' - Line 137: Changed 'Error opening Elevenlabs TTS Zenoh client' to 'Error opening Kokoro TTS Zenoh client' - Line 290: Fixed docstring 'Stop the Elevenlabs TTS connector' to 'Stop the Kokoro TTS connector' - Line 294: Changed 'Elevenlabs TTS Zenoh client closed' to 'Kokoro TTS Zenoh client closed' This fix improves debugging clarity by ensuring log messages correctly identify the Kokoro TTS connector rather than misleadingly referencing ElevenLabs.
Contributor
There was a problem hiding this comment.
Pull request overview
Fixes misleading Kokoro connector logging/docstring text that incorrectly referenced ElevenLabs, improving debugging clarity in the Speak action TTS connectors.
Changes:
- Update Zenoh client open/close log messages to say “Kokoro TTS” instead of “Elevenlabs TTS”.
- Update the
stop()docstring to correctly refer to the Kokoro connector.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Wanbogang
approved these changes
Feb 7, 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.
Summary
The Kokoro TTS connector (src/actions/speak/connector/kokoro_tts.py) contained copy-paste errors from the ElevenLabs connector, where log messages and docstrings incorrectly referenced 'Elevenlabs TTS' instead of 'Kokoro TTS'.
Problem
When troubleshooting or monitoring TTS functionality, log messages in the Kokoro TTS connector incorrectly stated 'Elevenlabs TTS', which causes confusion:
Changes
Impact
This fix improves debugging clarity and log accuracy for users of the Kokoro TTS connector.
Related
This is a similar copy-paste issue to PR #2151 which fixed the same problem in kokoro_tts_provider.py.