Fix Realtime API issues and audio engine crash#183
Merged
jamesrochabrun merged 6 commits intomainfrom Nov 26, 2025
Merged
Conversation
The ToolChoice.specific case was incorrectly encoding the function name
nested inside a "function" object. OpenAI's Realtime API expects "name"
at the root level of tool_choice, not nested.
Before: {"type": "function", "function": {"name": "fn"}}
After: {"type": "function", "name": "fn"}
This fixes the error: Missing required parameter: 'session.tool_choice.name'
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Refactor MicrophonePCMSampleVendorAE to avoid actor isolation issues by extracting the tap installation into a nonisolated helper method. This prevents crashes caused by accessing actor-isolated properties from within the non-actor tap closure. Ported from: lzell/AIProxySwift#238 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Add handling for 7 previously unhandled message types: - response.text.delta / response.text.done (streaming text) - response.output_item.added / response.output_item.done - response.content_part.added / response.content_part.done - conversation.item.created These messages are now parsed and yielded through the AsyncStream instead of being logged as warnings. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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
tool_choice.nameencoding for specific function - resolvesMissing required parameter: 'session.tool_choice.name'errorresponse.text.delta/response.text.done(streaming text)response.output_item.added/response.output_item.doneresponse.content_part.added/response.content_part.doneconversation.item.createdTest plan
ToolChoice.specific(functionName:)🤖 Generated with Claude Code