Swap command (#84)

Co-authored-by: Shubham Naik <shub@memgpt.ai>
This commit is contained in:
Shubham Naik
2025-11-17 11:26:48 -08:00
committed by GitHub
parent 9212dfb52b
commit d3b9eb7245
3 changed files with 423 additions and 2 deletions

View File

@@ -71,6 +71,13 @@ export const commands: Record<string, Command> = {
return "Renaming agent...";
},
},
"/swap": {
desc: "Switch to a different agent",
handler: () => {
// Handled specially in App.tsx to access agent list and client
return "Swapping agent...";
},
},
};
/**