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 10:39:21 +01:00
parent 0df48f6b33
commit b367f5bec6

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);