@cnwenf/occ 2.1.248 → 2.1.249
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 +2 -2
- 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
|
|
567765
|
+
return "\x1B[38;2;135;0;255multracode\x1B[0m";
|
|
567766
567766
|
}
|
|
567767
567767
|
if (!modelSupportsEffort(model))
|
|
567768
567768
|
return;
|
|
@@ -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 ?
|
|
691798
|
+
const effortNotificationText = ultracodeBadgeActive ? "\x1B[38;2;135;0;255multracode\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 {
|