add ctx.say_filler() for acoustic fillers during long tools#5885
Open
longcw wants to merge 4 commits into
Open
add ctx.say_filler() for acoustic fillers during long tools#5885longcw wants to merge 4 commits into
longcw wants to merge 4 commits into
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.
Summary
Adds
ctx.say_filler()— an async context manager onRunContextthat schedules optional filler speech during a long-running tool call. Fills quiet conversation gaps without burning an LLM round-trip.Design
ctx.update()is the chat-ctx channel — delivers a real status to the LLM, which voices it.ctx.say_filler()is the acoustic channel — firessession.say()directly, bypasses the LLM.delayseconds of continuous session-idle before playing, so fillers don't talk over the user or queue behind other speech. State changes (agent_state_changed,user_state_changed) reset the dwell.interval=None(default) fires at most once; settingintervalmakes the scheduler loop with wall-clock cooldown between fires.max_stepscaps the number of fires.stror(step: int) -> SpeechHandle | str | None. Callable returningNoneskips; useful for rotating variants.