Ship Assistent 0.11.9: esbuild bundle and patch-keys manifest.
Replace split Assets JS with a built bundle and aligned C#/config so SwarmUI loads one script and patch apply stays consistent; drop legacy terse persona and memory seed. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -228,12 +228,24 @@ public partial class SwarmAssistentExtension
|
||||
{
|
||||
break;
|
||||
}
|
||||
string tool = NextToolHop(patch);
|
||||
if (string.IsNullOrWhiteSpace(tool))
|
||||
string follow = null;
|
||||
JArray civitaiHop = null;
|
||||
HashSet<string> hopSkip = new(StringComparer.OrdinalIgnoreCase);
|
||||
while (true)
|
||||
{
|
||||
break;
|
||||
string tool = NextToolHop(patch, hopSkip);
|
||||
if (string.IsNullOrWhiteSpace(tool))
|
||||
{
|
||||
follow = null;
|
||||
break;
|
||||
}
|
||||
(follow, civitaiHop) = await RunToolHop(session, root, embed, pid, chain, patch, tool, hopDone);
|
||||
if (follow is not null)
|
||||
{
|
||||
break;
|
||||
}
|
||||
hopSkip.Add(tool);
|
||||
}
|
||||
(string follow, JArray civitaiHop) = await RunToolHop(session, root, embed, pid, chain, patch, tool, hopDone);
|
||||
if (follow is null)
|
||||
{
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user