billion-context-omp 0.1.3 → 0.1.4
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3815,7 +3815,7 @@ async function statusReport(runtime, ctx) {
|
|
|
3815
3815
|
const activeBlocksList = state.blocks.filter((b) => b.active);
|
|
3816
3816
|
const totalBlocksList = state.blocks;
|
|
3817
3817
|
const lines = [];
|
|
3818
|
-
const versionStr = "0.1.
|
|
3818
|
+
const versionStr = "0.1.4" ? `billion-context-omp@${"0.1.4"}` : "";
|
|
3819
3819
|
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");
|
|
3820
3820
|
lines.push("\u2502 ACP Context Analysis \u2502");
|
|
3821
3821
|
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");
|
|
@@ -4310,7 +4310,7 @@ async function checkForUpdate(autoUpdate, notify) {
|
|
|
4310
4310
|
const data = await res.json();
|
|
4311
4311
|
const latest = data.version;
|
|
4312
4312
|
if (!latest) return;
|
|
4313
|
-
const current = runtimeVersion ?? "0.1.
|
|
4313
|
+
const current = runtimeVersion ?? "0.1.4";
|
|
4314
4314
|
const hasUpdate = isNewer(latest, current);
|
|
4315
4315
|
debug.event("update-check", {
|
|
4316
4316
|
current,
|
|
@@ -4598,7 +4598,7 @@ function wireCompactionDisable(pi, runtime) {
|
|
|
4598
4598
|
function wireSessionLifecycle(pi, runtime) {
|
|
4599
4599
|
pi.on("session_start", async (_event, ctx) => {
|
|
4600
4600
|
const sid = ctx.sessionManager.getSessionId();
|
|
4601
|
-
logInfo("session", { event: "start", sid, cwd: ctx.cwd, debug: runtime.adapter.debug ?? null, version: true ? "0.1.
|
|
4601
|
+
logInfo("session", { event: "start", sid, cwd: ctx.cwd, debug: runtime.adapter.debug ?? null, version: true ? "0.1.4" : null });
|
|
4602
4602
|
try {
|
|
4603
4603
|
const user = await loadUserConfig(ctx.cwd);
|
|
4604
4604
|
runtime.setAdapter(applyUserConfig(runtime.adapter, user));
|
package/package.json
CHANGED