plugins/phonic: support built-in tools via phonic_tools + configs_for_tools - #6853
Open
arunwpm-work wants to merge 3 commits into
Open
plugins/phonic: support built-in tools via phonic_tools + configs_for_tools#6853arunwpm-work wants to merge 3 commits into
arunwpm-work wants to merge 3 commits into
Conversation
Enable choose_not_to_respond / keypad_input / natural_conversation_ending by name in phonic_tools; configure via configs_for_tools (respond_after_sec, speech_before_tool_call) serialized as inline built-in objects. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Picks up the published choose_not_to_respond / respond_after_sec types. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
arunwpm-work
marked this pull request as ready for review
August 14, 2026 22:22
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.
Enable Phonic's built-in tools (
choose_not_to_respond,keypad_input,natural_conversation_ending) in the realtime model by listing their names inphonic_tools, and configure them through a matchingconfigs_for_toolsentry —respond_after_secforchoose_not_to_respond,speech_before_tool_callfor the other two.A built-in listed with a config is serialized as an inline
{ type: "built_in", name, tool_config }object; without a config it is sent as a bare name and uses the tool's Phonic-side defaults. No new constructor option — this reuses the existingphonic_tools/configs_for_toolssurface.README updated.