chore: allow renaming agent (#83)

Co-authored-by: Shubham Naik <shub@memgpt.ai>
This commit is contained in:
Shubham Naik
2025-11-07 20:48:12 -08:00
committed by GitHub
parent d762859963
commit eab04aaee3
5 changed files with 90 additions and 2 deletions

View File

@@ -64,6 +64,13 @@ export const commands: Record<string, Command> = {
return "Removing tools...";
},
},
"/rename": {
desc: "Rename the current agent",
handler: () => {
// Handled specially in App.tsx to access agent ID and client
return "Renaming agent...";
},
},
};
/**