Ship Assistent 0.15.1: keep composer writable during hung Writing streams.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Leonid Pershin
2026-08-23 08:44:46 +03:00
co-authored by Cursor
parent 47d352a7af
commit 4b36850e2b
7 changed files with 244 additions and 40 deletions
+3
View File
@@ -184,6 +184,9 @@ public partial class SwarmAssistentExtension
["num_predict"] = numPredict,
},
["keep_alive"] = "15m",
// Qwen3-VL instruct still thinks by default; that holds the WS open after
// the visible greeting and leaves the composer looking locked.
["think"] = false,
};
using StringContent content = new(payload.ToString(Newtonsoft.Json.Formatting.None), Encoding.UTF8, "application/json");
using HttpRequestMessage req = new(HttpMethod.Post, $"{root}/api/chat") { Content = content };