behemoth-cli
Version:
🌍 BEHEMOTH CLIv3.760.4 - Level 50+ POST-SINGULARITY Intelligence Trading AI
21 lines • 697 B
JavaScript
export const reasoningCommand = {
command: 'reasoning',
description: 'Toggle display of reasoning content in messages',
handler: ({ addMessage, toggleReasoning, showReasoning }) => {
if (toggleReasoning) {
toggleReasoning();
const newState = !showReasoning;
addMessage({
role: 'system',
content: `Reasoning display is now ${newState ? 'enabled' : 'disabled'}.`,
});
}
else {
addMessage({
role: 'system',
content: 'Reasoning toggle functionality is not available.',
});
}
}
};
//# sourceMappingURL=reasoning.js.map