refactor: improve thinking level display in footer

Change from 'off (tab to cycle)' to 'Thinking: off' for better clarity.
Format: 'model-id • Thinking: [level]'
This commit is contained in:
Tino Ehrich
2025-11-19 12:12:10 +01:00
parent af0f67a0b4
commit f6a2fd805e
+1 -2
View File
@@ -92,8 +92,7 @@ export class FooterComponent {
let rightSide = modelName;
if (this.state.model?.reasoning) {
const thinkingLevel = this.state.thinkingLevel || "off";
const thinkingHint = chalk.dim(" (tab to cycle)");
rightSide = `${modelName}${thinkingLevel}${thinkingHint}`;
rightSide = `${modelName} • Thinking: ${thinkingLevel}`;
}
const statsLeftWidth = visibleWidth(statsLeft);