Ship Assistent 0.10: settings panel and UserPrefs with prompt weight.
Separate About-the-user memory (global + per-persona) from craft RAG, add tabbed settings with persona export/import and craft clear APIs. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+14
-1
@@ -19,7 +19,8 @@ public partial class SwarmAssistentExtension
|
||||
"snapshot_generate", "select_slot", "aspect", "images", "batch", "vary", "lock_seed",
|
||||
"creativity", "intensity", "complexity", "movement",
|
||||
"clear_prompt_images", "slot_to_prompt_image", "pack", "memories", "memory",
|
||||
"memory_query", "memory_kind", "tag_query",
|
||||
"memory_query", "memory_kind", "tag_query", "user_prefs",
|
||||
"inventory_query", "skills", "persona_shelves", "controls",
|
||||
];
|
||||
|
||||
static bool HasValue(JObject obj, string key)
|
||||
@@ -146,6 +147,18 @@ public partial class SwarmAssistentExtension
|
||||
{
|
||||
return "lookup_tags";
|
||||
}
|
||||
if (ActionsContain(patch, "list_inventory") || !string.IsNullOrWhiteSpace(patch["inventory_query"]?.ToString()))
|
||||
{
|
||||
return "list_inventory";
|
||||
}
|
||||
if (ActionsContain(patch, "skill_load"))
|
||||
{
|
||||
return "skill_load";
|
||||
}
|
||||
if (ActionsContain(patch, "persona_read"))
|
||||
{
|
||||
return "persona_read";
|
||||
}
|
||||
if (ActionsContain(patch, "search_civitai") || !string.IsNullOrWhiteSpace(ExtractSearchQuery(patch)))
|
||||
{
|
||||
return "civitai";
|
||||
|
||||
Reference in New Issue
Block a user