openclaw-aicodewith-auth 0.2.5 → 0.2.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.
package/README.md CHANGED
@@ -46,10 +46,7 @@ You will be prompted to enter your AICodewith API key.
46
46
 
47
47
  ```bash
48
48
  # Use Claude Opus 4.5 (default after auth)
49
- openclaw agent --message "Hello"
50
-
51
- # Use a specific model
52
- openclaw agent --model aicodewith-gpt/gpt-5.2-codex --message "Hello"
49
+ openclaw agent --agent main --message "Hello"
53
50
 
54
51
  # List available models
55
52
  openclaw models list | grep aicodewith
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-aicodewith-auth",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "type": "module",
5
5
  "description": "AICodewith provider plugin for OpenClaw - Access GPT, Claude, and Gemini models via AICodewith API",
6
6
  "author": "daneel",
package/src/models.ts CHANGED
@@ -28,7 +28,7 @@ export const CLAUDE_MODELS = [
28
28
  reasoning: false,
29
29
  input: ["text", "image"] as const,
30
30
  cost: DEFAULT_COST,
31
- contextWindow: 160000,
31
+ contextWindow: 200000,
32
32
  maxTokens: 64000,
33
33
  },
34
34
  {
@@ -37,7 +37,7 @@ export const CLAUDE_MODELS = [
37
37
  reasoning: false,
38
38
  input: ["text", "image"] as const,
39
39
  cost: DEFAULT_COST,
40
- contextWindow: 160000,
40
+ contextWindow: 200000,
41
41
  maxTokens: 64000,
42
42
  },
43
43
  ];