theclawbay 0.6.5 → 0.6.6
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.
|
@@ -5,7 +5,7 @@ export declare const MANAGED_END = "# theclawbay-managed:end";
|
|
|
5
5
|
export declare const HISTORY_PROVIDER_NEUTRALIZE_SOURCES: Set<string>;
|
|
6
6
|
export declare const HISTORY_PROVIDER_DB_MIGRATE_SOURCES: string[];
|
|
7
7
|
export declare const CODEX_MODEL_CONTEXT_WINDOW = 272000;
|
|
8
|
-
export declare const CODEX_MODEL_AUTO_COMPACT_TOKEN_LIMIT =
|
|
8
|
+
export declare const CODEX_MODEL_AUTO_COMPACT_TOKEN_LIMIT = 200000;
|
|
9
9
|
export type CodexFeatureFlagSnapshot = {
|
|
10
10
|
hadFeaturesTable: boolean;
|
|
11
11
|
appsHadKey: boolean;
|
|
@@ -35,7 +35,7 @@ exports.HISTORY_PROVIDER_DB_MIGRATE_SOURCES = ["openai", providers_1.DEFAULT_PRO
|
|
|
35
35
|
// Keep the compact trigger below the long-context pricing threshold so Codex
|
|
36
36
|
// compacts before customers are likely to enter the higher-priced tier.
|
|
37
37
|
exports.CODEX_MODEL_CONTEXT_WINDOW = 272000;
|
|
38
|
-
exports.CODEX_MODEL_AUTO_COMPACT_TOKEN_LIMIT =
|
|
38
|
+
exports.CODEX_MODEL_AUTO_COMPACT_TOKEN_LIMIT = 200000;
|
|
39
39
|
function removeProviderTable(source, providerId) {
|
|
40
40
|
const header = `[model_providers.${providerId}]`;
|
|
41
41
|
const lines = source.split(/\r?\n/);
|
|
@@ -25,9 +25,9 @@ const SUPPORTED_MODEL_CONFIG = new Map(SUPPORTED_MODELS.map((model) => [model.id
|
|
|
25
25
|
const TEMPLATE_MODEL_IDS = TARGET_MODEL_IDS;
|
|
26
26
|
const TARGET_MODEL_LABEL_TEXT = "the current The Claw Bay model catalog";
|
|
27
27
|
const AUTO_COMPACT_TOKEN_LIMIT_BY_MODEL_ID = new Map([
|
|
28
|
-
["gpt-5.6",
|
|
29
|
-
["gpt-5.6-sol",
|
|
30
|
-
["gpt-5.6-terra",
|
|
28
|
+
["gpt-5.6", 200000],
|
|
29
|
+
["gpt-5.6-sol", 200000],
|
|
30
|
+
["gpt-5.6-terra", 200000],
|
|
31
31
|
]);
|
|
32
32
|
const DEFAULT_REASONING_LEVELS = [
|
|
33
33
|
{ effort: "low", description: "Fast responses with lighter reasoning" },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "theclawbay",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
4
4
|
"description": "CLI for connecting Codex, Hermes Agent, Gemini-compatible apps, Continue, Cline, GSD, OpenClaw, OpenCode, Kilo, Roo Code, Aider, experimental Trae, and experimental Zo to The Claw Bay.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -154,6 +154,28 @@
|
|
|
154
154
|
"outputPer1M": 0.87,
|
|
155
155
|
"contextWindow": 1000000
|
|
156
156
|
},
|
|
157
|
+
{
|
|
158
|
+
"id": "deepseek-v4-pro-budget",
|
|
159
|
+
"label": "DeepSeek V4 Pro Budget",
|
|
160
|
+
"note": "Lower-cost DeepSeek V4 Pro route for high-volume reasoning work.",
|
|
161
|
+
"tone": "coral",
|
|
162
|
+
"provider": "deepseek",
|
|
163
|
+
"inputPer1M": 0.127,
|
|
164
|
+
"cachedInputPer1M": 0.002,
|
|
165
|
+
"outputPer1M": 0.254,
|
|
166
|
+
"contextWindow": 1000000
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"id": "deepseek-v4-flash-budget",
|
|
170
|
+
"label": "DeepSeek V4 Flash Budget",
|
|
171
|
+
"note": "Lower-cost DeepSeek V4 Flash route for high-volume fast iterations.",
|
|
172
|
+
"tone": "sea",
|
|
173
|
+
"provider": "deepseek",
|
|
174
|
+
"inputPer1M": 0.043,
|
|
175
|
+
"cachedInputPer1M": 0.001,
|
|
176
|
+
"outputPer1M": 0.085,
|
|
177
|
+
"contextWindow": 1000000
|
|
178
|
+
},
|
|
157
179
|
{
|
|
158
180
|
"id": "deepseek-v4-pro-lightning",
|
|
159
181
|
"label": "DeepSeek V4 Pro Lightning",
|