Overview
STTMuteFilter
is a general-purpose processor that combines STT muting and interruption control. When active, it prevents both transcription and interruptions during specified conditions (e.g., bot speech, function calls), providing a cleaner conversation flow.
The processor supports multiple simultaneous strategies for when to mute the STT service, making it flexible for different use cases.
Want to try it out? Check out the STTMuteFilter foundational
demo
Constructor Parameters
Configuration object that defines the muting strategies and optional custom
logic
The STT service to control (deprecated, will be removed in a future version)
Configuration
The processor is configured usingSTTMuteConfig
, which determines when and how the STT service should be muted:
Set of muting strategies to apply
Optional callback for custom muting logic (required when strategy is
CUSTOM
)Muting Strategies
STTMuteConfig
accepts a set of these STTMuteStrategy
values:
Mute only during the bot’s first speech (typically during introduction)
Start muted and remain muted until first bot speech completes. Useful when bot
speaks first and you want to ensure its first response cannot be interrupted.
Mute during LLM function calls (e.g., API requests, external service calls)
Mute during all bot speech
Use custom logic provided via callback to determine when to mute. The callback
is invoked when the bot is speaking and can use application state to decide
whether to mute. When the bot stops speaking, unmuting occurs automatically if
no other strategy requires muting.
MUTE_UNTIL_FIRST_BOT_COMPLETE
and FIRST_SPEECH
strategies should not be
used together as they handle the first bot speech differently.Input Frames
Indicates bot has started speaking
Indicates bot has stopped speaking
Indicates a function call has started
Indicates a function call has completed
Indicates an interim transcription result (suppressed when muted)
User interruption start event (suppressed when muted)
User interruption stop event (suppressed when muted)
Indicates a transcription result (suppressed when muted)
Indicates user has started speaking (suppressed when muted)
Indicates user has stopped speaking (suppressed when muted)
Output Frames
Control frame to mute/unmute the STT service
Usage Examples
Basic Usage (Mute During Bot’s First Speech)
Mute Until First Bot Response Completes
Always Mute During Bot Speech
Custom Muting Logic
TheCUSTOM
strategy allows you to control muting based on application state when the bot is speaking. The callback will be invoked whenever the bot is speaking, and your logic decides whether to mute:
Combining Multiple Strategies
Frame Flow
Notes
- Combines STT muting and interruption control into a single concept
- Muting prevents both transcription and interruptions
- Multiple strategies can be active simultaneously
- CUSTOM strategy callback is only invoked when the bot is speaking
- Unmuting happens automatically when bot speech ends (if no other strategy requires muting)
- Placed between the STT service and context aggregator in pipeline
- Maintains conversation flow during bot speech and function calls
- Efficient state tracking for minimal overhead