@corbat-tech/coco 2.32.0 → 2.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/index.js CHANGED
@@ -55545,8 +55545,9 @@ function formatStatusBar(projectPath, config, gitCtx, contextUsagePercent) {
55545
55545
  parts.push(chalk.dim("\u{1F4C1} ") + chalk.magenta(projectName));
55546
55546
  const providerName = config.provider.type;
55547
55547
  const modelName = getDisplayModel(config);
55548
+ const capability = getThinkingCapability(providerName, modelName);
55548
55549
  const thinkingMode = config.provider.thinking;
55549
- const thinkingSuffix = thinkingMode !== void 0 ? chalk.dim(" [") + chalk.magenta(formatThinkingMode(thinkingMode)) + chalk.dim("]") : "";
55550
+ const thinkingSuffix = capability.supported ? chalk.dim("/") + chalk.magenta(formatThinkingMode(thinkingMode ?? "off")) : "";
55550
55551
  parts.push(chalk.dim(`${providerName}/`) + chalk.cyan(modelName) + thinkingSuffix);
55551
55552
  if (isQualityLoop()) {
55552
55553
  parts.push(chalk.green("\u{1F504} quality loop"));