billion-context-omp 0.1.7 → 0.1.9
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/README.md +1 -1
- package/README.zh-CN.md +1 -1
- package/dist/auto-compress.d.ts +4 -0
- package/dist/index.js +665 -78
- package/dist/index.js.map +1 -1
- package/dist/messages.d.ts +1 -1
- package/dist/runtime.d.ts +4 -0
- package/dist/user-config.d.ts +11 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Rich status display for the user:
|
|
|
90
90
|
╭─────────────────────────────────────────────╮
|
|
91
91
|
│ ACP Context Analysis │
|
|
92
92
|
╰─────────────────────────────────────────────╯
|
|
93
|
-
billion-context-omp@0.
|
|
93
|
+
billion-context-omp@0.1.7
|
|
94
94
|
|
|
95
95
|
Context (session accounting, host footer scale): 9% (93k / 1.0M) — never shrinks; includes compressed originals
|
|
96
96
|
|
package/README.zh-CN.md
CHANGED
|
@@ -90,7 +90,7 @@ omp 内置的 `/compact` 被拦截,替换为 ACP 模型摘要式 compaction,
|
|
|
90
90
|
╭─────────────────────────────────────────────╮
|
|
91
91
|
│ ACP Context Analysis │
|
|
92
92
|
╰─────────────────────────────────────────────╯
|
|
93
|
-
billion-context-omp@0.
|
|
93
|
+
billion-context-omp@0.1.7
|
|
94
94
|
|
|
95
95
|
Context (session accounting, host footer scale): 9% (93k / 1.0M) — never shrinks; includes compressed originals
|
|
96
96
|
|
package/dist/auto-compress.d.ts
CHANGED
|
@@ -50,6 +50,10 @@ export declare function summarizeMessages(ctx: ExtensionContext, messages: Agent
|
|
|
50
50
|
customInstructions?: string;
|
|
51
51
|
signal?: AbortSignal;
|
|
52
52
|
completeFn?: typeof complete;
|
|
53
|
+
/** Fold-slot messageRefs — when provided, formatSlice renders stable
|
|
54
|
+
* mNNNNN refs instead of raw pN position ids (issue #14 Minor1: the
|
|
55
|
+
* model was shown p-ids it must never echo back). */
|
|
56
|
+
messageRefs?: CompressionState["messageRefs"];
|
|
53
57
|
}): Promise<{
|
|
54
58
|
summary: string;
|
|
55
59
|
model: string;
|