Ship Assistent 0.12.1: training tab, dataset pipeline, and heard RAG.
Restructure UI with app-level tabs and chat history drawer; add dataset curation, HF import, Modelfile/QLoRA hooks, and link approved samples to the agent immediately via heard vector memory without waiting for fine-tuning. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -186,6 +186,7 @@ public partial class SwarmAssistentExtension
|
||||
|| s.Equals("persona_read", StringComparison.OrdinalIgnoreCase)
|
||||
|| s.Equals("memory_get", StringComparison.OrdinalIgnoreCase)
|
||||
|| s.Equals("memory_search", StringComparison.OrdinalIgnoreCase)
|
||||
|| s.Equals("heard_search", StringComparison.OrdinalIgnoreCase)
|
||||
|| s.Equals("lookup_tags", StringComparison.OrdinalIgnoreCase)
|
||||
|| s.Equals("list_inventory", StringComparison.OrdinalIgnoreCase)
|
||||
|| s.Equals("search_civitai", StringComparison.OrdinalIgnoreCase)
|
||||
@@ -277,6 +278,11 @@ public partial class SwarmAssistentExtension
|
||||
{
|
||||
return "memory_search";
|
||||
}
|
||||
if ((ActionsContain(patch, "heard_search") || string.Equals(patch["heard_query"]?.ToString(), "1", StringComparison.Ordinal))
|
||||
&& !Skip("heard_search"))
|
||||
{
|
||||
return "heard_search";
|
||||
}
|
||||
if ((ActionsContain(patch, "lookup_tags") || !string.IsNullOrWhiteSpace(patch["tag_query"]?.ToString()))
|
||||
&& !Skip("lookup_tags"))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user