blun-king-cli 9.1.338 → 9.1.340
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/bin/turn-thinking-policy.cjs +1 -1
- package/blun.mjs +2 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ const STATUS_ONLY_CHECK_IN = /(?:\bstandabfrage\b|\bstatusabfrage\b|\bkurzes?\s+
|
|
|
9
9
|
const STATUS_FOLLOW_UP_ACTION = /\b(?:aendere|arbeite|baue|build|change|delete|deploy|deploye|fahr|fix|fixe|implement|implementiere|install|installiere|loesche|mach|patch|pruefe|repariere|run|schreibe|setze|start|starte|stop|stoppe|test|teste|write)\b/iu;
|
|
10
10
|
const LIGHTWEIGHT_STEER = /\b(?:cool|danke|dankeschoen|gute arbeit|passt|perfekt|stolz|super|freut mich)\b/iu;
|
|
11
11
|
const STANDALONE_CHAT_COMPLETION_TOKENS = 1024;
|
|
12
|
-
const ADAPTIVE_LOW_COMPLETION_TOKENS =
|
|
12
|
+
const ADAPTIVE_LOW_COMPLETION_TOKENS = 4096;
|
|
13
13
|
const STANDARD_TURN_MAX_COMPLETION_TOKENS = 24_576;
|
|
14
14
|
|
|
15
15
|
function selectThinkingEffortForTurn(text, originKind) {
|
package/blun.mjs
CHANGED
|
@@ -340412,7 +340412,8 @@ function getUpdateStateFile() {
|
|
|
340412
340412
|
* Return the update install state file: `<dataDir>/updates/install.json`.
|
|
340413
340413
|
*/
|
|
340414
340414
|
function getUpdateInstallStateFile() {
|
|
340415
|
-
|
|
340415
|
+
const sharedHome = process.env["BLUN_SHARED_HOME"]?.trim();
|
|
340416
|
+
return join(sharedHome || getDataDir(), BLUN_UPDATE_DIR_NAME, BLUN_UPDATE_INSTALL_STATE_FILE_NAME);
|
|
340416
340417
|
}
|
|
340417
340418
|
/**
|
|
340418
340419
|
* Return the rollout decision log: `<dataDir>/updates/rollout.log`.
|