mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 22:03:45 +00:00
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:
parent
0df48f6b33
commit
b367f5bec6
1 changed files with 1 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue