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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user