Ship Assistent 0.10.8 cheap-bug sweep for RU intent, VRAM park, and identity.

Silent Generate, pack selection, and loading UI no longer trip on Cyrillic or fake GPU loads; persona title is the assistant, not the user.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Leonid Pershin
2026-08-22 03:22:01 +03:00
co-authored by Cursor
parent 3e0912b732
commit 6e7272ffc9
12 changed files with 394 additions and 145 deletions
+13 -1
View File
@@ -483,7 +483,19 @@ public partial class SwarmAssistentExtension
if (tool == "civitai")
{
string query = ExtractSearchQuery(patch);
if (string.IsNullOrWhiteSpace(query) || !hopDone.Add("civitai:" + query))
if (string.IsNullOrWhiteSpace(query))
{
if (!hopDone.Add("civitai:missing_query"))
{
return (null, null);
}
return (
"search_civitai skipped: provide a short search_query (LoRA keywords only). "
+ "Never search with the whole user message. Then retry with actions:[\"search_civitai\"] + search_query, "
+ "or continue using available_loras only.",
null);
}
if (!hopDone.Add("civitai:" + query))
{
return (null, null);
}