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:
@@ -92,8 +92,7 @@ export class FooterComponent {
|
|||||||
let rightSide = modelName;
|
let rightSide = modelName;
|
||||||
if (this.state.model?.reasoning) {
|
if (this.state.model?.reasoning) {
|
||||||
const thinkingLevel = this.state.thinkingLevel || "off";
|
const thinkingLevel = this.state.thinkingLevel || "off";
|
||||||
const thinkingHint = chalk.dim(" (tab to cycle)");
|
rightSide = `${modelName} • Thinking: ${thinkingLevel}`;
|
||||||
rightSide = `${modelName} • ${thinkingLevel}${thinkingHint}`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const statsLeftWidth = visibleWidth(statsLeft);
|
const statsLeftWidth = visibleWidth(statsLeft);
|
||||||
|
|||||||
Reference in New Issue
Block a user