v1.2.1

SagerNet/sing-boxv1.2.1May 15, 2026by aconchillo

AI Summary

Updates default WebSocket endpoints for speech services to region-neutral URLs and fixes a critical bug affecting bot hangs during tool usage.

Key Highlights

  • Switch to region-neutral WebSocket endpoints for ASR and TTS services.
  • Fix for bot hangs when `filter_incomplete_user_turns` is enabled.
  • Automatic routing to the nearest endpoint.

New Features

  • Tool calls now finalize the turn immediately upon starting.
  • Updated default configuration for Gradium services.

Full Release Notes

### Changed

- Changed the default WebSocket endpoints for `GradiumSTTService` and `GradiumTTSService` to the region-neutral `wss://api.gradium.ai/api/speech/asr` and `wss://api.gradium.ai/api/speech/tts`. Gradium now automatically routes traffic to the nearest endpoint. Override the url to pin to a specific region.
  (PR [#4500](https://github.com/pipecat-ai/pipecat/pull/4500))

### Fixed

- Fixed bot hangs when `filter_incomplete_user_turns` was enabled and the LLM responded by calling a tool. The user turn never finalized, so the assistant aggregator gated the tool-result context push and the LLM continuation never ran. Tool calls now finalize the turn the moment they start, before the function dispatches.
  (PR [#4501](https://github.com/pipecat-ai/pipecat/pull/4501))