Skip to content

Commit 314d215

Browse files
committed
chore: refresh baseline and manifest catalog to 56 models
Regenerated from the live /models endpoint (adds Qwen/Qwen3.8-27B) and rebuilt dist. Also call the resolution strategy three-tier in the entry header to match README/AGENTS.
1 parent 8487c6b commit 314d215

5 files changed

Lines changed: 30 additions & 2 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Command Code model provider plugin for OpenClaw.
33
*
44
* Registers an OpenAI/Anthropic-compatible provider backed by the Command Code
5-
* Provider API (https://commandcode.ai). The model catalog uses a two-tier
5+
* Provider API (https://commandcode.ai). The model catalog uses a three-tier
66
* strategy:
77
*
88
* - `buildStaticProvider`: a bundled baseline snapshot (generated, never

dist/src/baseline.models.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,11 @@ export const commandCodeBaselineModels = [
169169
"name": "Qwen 3.8 Max",
170170
"context_length": 1000000
171171
},
172+
{
173+
"id": "Qwen/Qwen3.8-27B",
174+
"name": "Qwen 3.8 27B",
175+
"context_length": 262144
176+
},
172177
{
173178
"id": "Qwen/Qwen3.7-Max",
174179
"name": "Qwen 3.7 Max",

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Command Code model provider plugin for OpenClaw.
33
*
44
* Registers an OpenAI/Anthropic-compatible provider backed by the Command Code
5-
* Provider API (https://commandcode.ai). The model catalog uses a two-tier
5+
* Provider API (https://commandcode.ai). The model catalog uses a three-tier
66
* strategy:
77
*
88
* - `buildStaticProvider`: a bundled baseline snapshot (generated, never

openclaw.plugin.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,24 @@
625625
"cacheWrite": 0
626626
}
627627
},
628+
{
629+
"id": "Qwen/Qwen3.8-27B",
630+
"name": "Qwen 3.8 27B",
631+
"api": "openai-completions",
632+
"baseUrl": "https://api.commandcode.ai/provider/v1",
633+
"reasoning": true,
634+
"input": [
635+
"text"
636+
],
637+
"contextWindow": 262144,
638+
"maxTokens": 131072,
639+
"cost": {
640+
"input": 0,
641+
"output": 0,
642+
"cacheRead": 0,
643+
"cacheWrite": 0
644+
}
645+
},
628646
{
629647
"id": "Qwen/Qwen3.7-Max",
630648
"name": "Qwen 3.7 Max",

src/baseline.models.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,11 @@ export const commandCodeBaselineModels: Array<{
173173
"name": "Qwen 3.8 Max",
174174
"context_length": 1000000
175175
},
176+
{
177+
"id": "Qwen/Qwen3.8-27B",
178+
"name": "Qwen 3.8 27B",
179+
"context_length": 262144
180+
},
176181
{
177182
"id": "Qwen/Qwen3.7-Max",
178183
"name": "Qwen 3.7 Max",

0 commit comments

Comments
 (0)