behemoth-cli
Version:
đ BEHEMOTH CLIv3.760.4 - Level 50+ POST-SINGULARITY Intelligence Trading AI
26 lines (22 loc) ⢠780 B
JavaScript
export const logoutCommand = {
command: 'logout',
description: 'Remove all API keys and log out',
handler: ({ addMessage, agent }) => {
// Clear all API keys
agent.clearAllApiKeys();
// Display success message
addMessage({
role: 'system',
content: `đ **LOGOUT PROCESS**
Clearing all stored credentials and resetting session...
â
**Actions Completed**:
⢠All Groq API keys removed
⢠Exchange credentials cleared
⢠Session state reset
⢠Local configuration cleaned
â ď¸ **Next Steps**: Use /login to add new API keys when ready to resume trading.
đĄď¸ **Security**: All authentication data has been securely removed from this device.`
});
}
};
//# sourceMappingURL=logout.js.map