@cnwenf/occ 2.1.249 → 2.1.250
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.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -567762,7 +567762,7 @@ var init_ThemePicker = __esm(() => {
|
|
|
567762
567762
|
// src/components/EffortIndicator.ts
|
|
567763
567763
|
function getEffortNotificationText(effortValue, model) {
|
|
567764
567764
|
if (isUltracodeEnabled()) {
|
|
567765
|
-
return "\x1B[
|
|
567765
|
+
return "\x1B[95multracode\x1B[0m";
|
|
567766
567766
|
}
|
|
567767
567767
|
if (!modelSupportsEffort(model))
|
|
567768
567768
|
return;
|
|
@@ -633903,7 +633903,7 @@ var init_effort3 = __esm(() => {
|
|
|
633903
633903
|
type: "local-jsx",
|
|
633904
633904
|
name: "effort",
|
|
633905
633905
|
description: "Set effort level for model usage",
|
|
633906
|
-
argumentHint: "[low|medium|high|max|auto]",
|
|
633906
|
+
argumentHint: "[low|medium|high|max|ultracode|auto]",
|
|
633907
633907
|
get immediate() {
|
|
633908
633908
|
return shouldInferenceConfigCommandBeImmediate();
|
|
633909
633909
|
},
|
|
@@ -691795,7 +691795,7 @@ function PromptInput({
|
|
|
691795
691795
|
const fastModeCooldown = isFastModeEnabled() ? isFastModeCooldown() : false;
|
|
691796
691796
|
const showFastIcon = isFastModeEnabled() ? isFastMode && (isFastModeAvailable() || fastModeCooldown) : false;
|
|
691797
691797
|
const showFastIconHint = useShowFastIconHint(showFastIcon ?? false);
|
|
691798
|
-
const effortNotificationText = ultracodeBadgeActive ? "\x1B[
|
|
691798
|
+
const effortNotificationText = ultracodeBadgeActive ? "\x1B[95multracode\x1B[0m" : briefOwnsGap ? undefined : getEffortNotificationText(effortValue, mainLoopModel);
|
|
691799
691799
|
useBuddyNotification();
|
|
691800
691800
|
const companionSpeaking = feature("BUDDY") ? useAppState((s4) => s4.companionReaction !== undefined) : false;
|
|
691801
691801
|
const {
|