Simplify thinking level display in footer (remove 'Thinking:' prefix)

This commit is contained in:
Mario Zechner 2025-11-20 12:38:55 +01:00
parent 23d6746bb9
commit c7e4c84731

View file

@ -93,7 +93,7 @@ export class FooterComponent {
if (this.state.model?.reasoning) {
const thinkingLevel = this.state.thinkingLevel || "off";
if (thinkingLevel !== "off") {
rightSide = `${modelName} Thinking: ${thinkingLevel}`;
rightSide = `${modelName} ${thinkingLevel}`;
}
}