Move Soniqo live streaming into owhisper client#5859
Merged
Conversation
✅ Deploy Preview for old-char canceled.
|
49dd718 to
480048d
Compare
480048d to
add9a0a
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
There are 3 total unresolved issues (including 2 from previous reviews).
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit add9a0a. Configure here.
Route local Soniqo Parakeet live audio through an owhisper-client local live client and reuse the shared listener stream finalization path.
add9a0a to
f6de2ed
Compare
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.

Route local Soniqo Parakeet live audio through an owhisper-client local live client and reuse the shared listener stream finalization path.
Note
Medium Risk
Touches the realtime transcription pipeline (buffering, finalize, dual-mic echo gate) with a large logic move; regressions could affect live session timing or transcript metadata even though behavior is intended to match via shared
process_stream.Overview
Moves local Soniqo Parakeet live transcription out of
listener-coreand intoowhisper-clientbehind thelocalfeature, so Soniqo follows the same live-client pattern as remote STT adapters.listener-corenow enablesowhisper-clientwithfeatures = ["local"]andspawn_soniqo_rx_taskwires mic/speaker audio throughLocalSoniqoLiveClient(from_realtime_audio_single/dual) and the existingprocess_stream+FinalizeHandlepath, replacing hundreds of lines of inline buffering, flush timers, session lifecycle, and echo gating inadapters.rs.The new
local_soniqo_livemodule owns session start/stop on a blocking pool, 250ms buffer flushes, i16→f32 conversion, dual-channel echo suppression, and streamsResult<StreamResponse, LocalSoniqoLiveError>; echo-gate unit tests moved with it.Cargo.lockpicks up thetranscribe-soniqodependency on the consumer that enableslocal.Reviewed by Cursor Bugbot for commit f6de2ed. Bugbot is set up for automated code reviews on this repo. Configure here.