I'm trying to get multiple text blocks when text appears between tools calls on Telegram, like it appears on the macOS app. Intended behavior in macOS screenshot and actual behavior on Telegram screenshot. Tool call shouldn't show on telegram so that part is fine (verbose=off), but interleaving text should be sent as multiple blocks as they appear. Settings below:
{ "blockStreamingDefault": "on",
"blockStreamingBreak": "text_end",
"blockStreamingChunk": {
"minChars": 100,
"breakPreference": "paragraph"
},
"blockStreamingCoalesce": {
"minChars": 100,
"idleMs": 500
},
...,
"blockStreaming": true,
"blockStreamingCoalesce": {
"minChars": 300,
"idleMs": 1500
},
"streamMode": "off"
}