pi-clawbay 0.0.11 → 0.0.12

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -44,7 +44,7 @@ const OPENAI_KNOWN_COSTS = {
44
44
  "gpt-5.1-codex-max": { input: 1.25, output: 10.0, cacheRead: 0.125, cacheWrite: 1.25 },
45
45
  "gpt-5.1-codex-mini": { input: 0.25, output: 2.0, cacheRead: 0.025, cacheWrite: 0.25 },
46
46
  };
47
- const OPENAI_DEFAULT_CONTEXT_WINDOW = 400000;
47
+ const OPENAI_DEFAULT_CONTEXT_WINDOW = 258000;
48
48
  const OPENAI_272K_CONTEXT_WINDOW = 272000;
49
49
  const OPENAI_FRONTIER_CONTEXT_WINDOW = 1050000;
50
50
  const OPENAI_DEFAULT_MAX_TOKENS = 128000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-clawbay",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "TheClawBay provider extension for Pi Coding Agent - access GPT-5 and Codex models",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",