billion-context-pi 0.1.33 → 0.1.34

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/index.js CHANGED
@@ -269,7 +269,7 @@ function defaultConfig(modelContextLimit, overrides = {}) {
269
269
  iterationThreshold: 15,
270
270
  force: "soft",
271
271
  growthRatio: 0.05,
272
- growthFloor: Math.max(2e4, Math.round(modelContextLimit * 0.05)),
272
+ growthFloor: 5e4,
273
273
  growthCap: 5e4,
274
274
  minGrowthFloor: 2e4,
275
275
  minGrowthRatio: 0.45,
@@ -8822,7 +8822,7 @@ async function statusReport(runtime, ctx) {
8822
8822
  const activeBlocksList = state.blocks.filter((b) => b.active);
8823
8823
  const totalBlocksList = state.blocks;
8824
8824
  const lines = [];
8825
- const versionStr = "0.1.33" ? `billion-context-pi@${"0.1.33"}` : "";
8825
+ const versionStr = "0.1.34" ? `billion-context-pi@${"0.1.34"}` : "";
8826
8826
  lines.push("\u256D\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256E");
8827
8827
  lines.push("\u2502 ACP Context Analysis \u2502");
8828
8828
  lines.push("\u2570\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256F");
@@ -9189,7 +9189,7 @@ async function checkForUpdate(autoUpdate, notify) {
9189
9189
  const data = await res.json();
9190
9190
  const latest = data.version;
9191
9191
  if (!latest) return;
9192
- const current = runtimeVersion ?? "0.1.33";
9192
+ const current = runtimeVersion ?? "0.1.34";
9193
9193
  const hasUpdate = isNewer(latest, current);
9194
9194
  debug.event("update-check", {
9195
9195
  current,
@@ -9429,7 +9429,7 @@ function wireSessionLifecycle(pi, runtime) {
9429
9429
  runtime.store.invalidate();
9430
9430
  runtime.clearNudgeTracking();
9431
9431
  const sid = ctx.sessionManager.getSessionId();
9432
- logInfo("session", { event: "start", sid, cwd: ctx.cwd, debug: runtime.adapter.debug ?? null, version: true ? "0.1.33" : null });
9432
+ logInfo("session", { event: "start", sid, cwd: ctx.cwd, debug: runtime.adapter.debug ?? null, version: true ? "0.1.34" : null });
9433
9433
  try {
9434
9434
  const user = await loadUserConfig(ctx.cwd);
9435
9435
  runtime.setAdapter(applyUserConfig(runtime.adapter, user));