feat(gateway): echo voice transcripts back to user before agent reply - #25196
Closed
dgsratiu wants to merge 1 commit into
Closed
feat(gateway): echo voice transcripts back to user before agent reply#25196dgsratiu wants to merge 1 commit into
dgsratiu wants to merge 1 commit into
Conversation
When STT transcription succeeds, immediately send the transcribed text back to the user as a 🎤 "..." message before the agent processes it. This mirrors the echoTranscript behaviour from OpenClaw and lets users confirm what was heard without waiting for the full agent response. Implementation: stores successful transcripts on _pending_voice_transcripts during _enrich_message_with_transcription, then flushes them via the platform adapter in the calling site before the agent turn begins. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Collaborator
Contributor
|
This is an automated hermes-sweeper review. The transcript-echo behavior requested here is now implemented on main. Evidence:
The duplicate note linking #13727/#22123 was useful context; this narrower PR's requested behavior is covered by the implementation now present on main. |
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
🎤 "..."message before the agent processes itechoTranscript: truebehaviour familiar from other agent frameworksImplementation
Stores successful transcripts on
_pending_voice_transcriptsduring_enrich_message_with_transcription, then flushes them via the platform adapter at the call site before the agent turn begins. Failures are silently swallowed so a send error never blocks the agent response.Test plan
🎤 "transcribed text"echoed back immediately, followed by the agent reply🤖 Generated with Claude Code