theclawbay 0.6.7 → 0.6.8

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.
@@ -203,6 +203,9 @@ function seedDescription(modelId) {
203
203
  function applyGpt56CodexMetadata(seed, modelId) {
204
204
  if (!GPT56_MODEL_IDS.has(modelId))
205
205
  return;
206
+ const contextWindow = SUPPORTED_MODEL_CONFIG.get(modelId)?.contextWindow ?? 372000;
207
+ seed.context_window = contextWindow;
208
+ seed.max_context_window = contextWindow;
206
209
  seed.minimal_client_version = "0.144.0";
207
210
  seed.supported_reasoning_levels = cloneJson(GPT56_REASONING_LEVELS);
208
211
  seed.default_reasoning_level = modelId === "gpt-5.6-terra" ? "medium" : "low";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "theclawbay",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
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": {