ccman 3.3.16 → 3.3.18
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 +69 -65
- package/dist/index.js +529 -198
- package/dist/templates/codex/config.toml +4 -2
- package/dist/templates/openclaw/models.base.template.json +10 -10
- package/dist/templates/openclaw/openclaw.base.template.json +12 -11
- package/dist/templates/opencode/opencode.json +5 -5
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
model = "gpt-5.
|
|
1
|
+
model = "gpt-5.4"
|
|
2
2
|
model_reasoning_effort = "xhigh"
|
|
3
3
|
disable_response_storage = true
|
|
4
4
|
sandbox_mode = "danger-full-access"
|
|
@@ -9,6 +9,8 @@ file_opener = "vscode"
|
|
|
9
9
|
model_provider = "gmn"
|
|
10
10
|
web_search = "cached"
|
|
11
11
|
suppress_unstable_features_warning = true
|
|
12
|
+
model_context_window = 1000000
|
|
13
|
+
model_auto_compact_token_limit = 900000
|
|
12
14
|
|
|
13
15
|
[history]
|
|
14
16
|
persistence = "save-all"
|
|
@@ -47,4 +49,4 @@ hide_gpt5_1_migration_prompt = true
|
|
|
47
49
|
name = "gmn"
|
|
48
50
|
base_url = "https://gmn.chuangzuoli.com"
|
|
49
51
|
wire_api = "responses"
|
|
50
|
-
requires_openai_auth = true
|
|
52
|
+
requires_openai_auth = true
|
|
@@ -10,24 +10,24 @@
|
|
|
10
10
|
},
|
|
11
11
|
"models": [
|
|
12
12
|
{
|
|
13
|
-
"id": "gpt-5.
|
|
14
|
-
"name": "gpt-5.
|
|
13
|
+
"id": "gpt-5.4",
|
|
14
|
+
"name": "gpt-5.4",
|
|
15
15
|
"api": "openai-responses",
|
|
16
16
|
"reasoning": true,
|
|
17
|
-
"input": ["text"],
|
|
17
|
+
"input": ["text", "image"],
|
|
18
18
|
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
19
|
-
"contextWindow":
|
|
20
|
-
"maxTokens":
|
|
19
|
+
"contextWindow": 1050000,
|
|
20
|
+
"maxTokens": 128000
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
|
-
"id": "gpt-5.
|
|
24
|
-
"name": "gpt-5.
|
|
23
|
+
"id": "gpt-5.3-codex",
|
|
24
|
+
"name": "gpt-5.3-codex",
|
|
25
25
|
"api": "openai-responses",
|
|
26
26
|
"reasoning": false,
|
|
27
|
-
"input": ["text"],
|
|
27
|
+
"input": ["text", "image"],
|
|
28
28
|
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
29
|
-
"contextWindow":
|
|
30
|
-
"maxTokens":
|
|
29
|
+
"contextWindow": 400000,
|
|
30
|
+
"maxTokens": 128000
|
|
31
31
|
}
|
|
32
32
|
]
|
|
33
33
|
}
|
|
@@ -12,24 +12,24 @@
|
|
|
12
12
|
"authHeader": true,
|
|
13
13
|
"models": [
|
|
14
14
|
{
|
|
15
|
-
"id": "gpt-5.
|
|
16
|
-
"name": "gpt-5.
|
|
15
|
+
"id": "gpt-5.4",
|
|
16
|
+
"name": "gpt-5.4",
|
|
17
17
|
"api": "openai-responses",
|
|
18
18
|
"reasoning": true,
|
|
19
|
-
"input": ["text"],
|
|
19
|
+
"input": ["text", "image"],
|
|
20
20
|
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
21
|
-
"contextWindow":
|
|
22
|
-
"maxTokens":
|
|
21
|
+
"contextWindow": 1050000,
|
|
22
|
+
"maxTokens": 128000
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
|
-
"id": "gpt-5.
|
|
26
|
-
"name": "gpt-5.
|
|
25
|
+
"id": "gpt-5.3-codex",
|
|
26
|
+
"name": "gpt-5.3-codex",
|
|
27
27
|
"api": "openai-responses",
|
|
28
28
|
"reasoning": false,
|
|
29
|
-
"input": ["text"],
|
|
29
|
+
"input": ["text", "image"],
|
|
30
30
|
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
31
|
-
"contextWindow":
|
|
32
|
-
"maxTokens":
|
|
31
|
+
"contextWindow": 400000,
|
|
32
|
+
"maxTokens": 128000
|
|
33
33
|
}
|
|
34
34
|
]
|
|
35
35
|
}
|
|
@@ -38,8 +38,9 @@
|
|
|
38
38
|
"agents": {
|
|
39
39
|
"defaults": {
|
|
40
40
|
"workspace": "",
|
|
41
|
+
"imageModel": "{{providerName}}/gpt-5.4",
|
|
41
42
|
"model": {
|
|
42
|
-
"primary": "{{providerName}}/gpt-5.
|
|
43
|
+
"primary": "{{providerName}}/gpt-5.4"
|
|
43
44
|
},
|
|
44
45
|
"thinkingDefault": "xhigh"
|
|
45
46
|
}
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"apiKey": "{{apiKey}}"
|
|
7
7
|
},
|
|
8
8
|
"models": {
|
|
9
|
-
"gpt-5.
|
|
10
|
-
"name": "GPT-5.
|
|
9
|
+
"gpt-5.3-codex": {
|
|
10
|
+
"name": "GPT-5.3 Codex",
|
|
11
11
|
"options": {
|
|
12
12
|
"store": false
|
|
13
13
|
},
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"xhigh": {}
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"gpt-5.
|
|
22
|
-
"name": "GPT-5.
|
|
21
|
+
"gpt-5.4": {
|
|
22
|
+
"name": "GPT-5.4",
|
|
23
23
|
"options": {
|
|
24
24
|
"store": false
|
|
25
25
|
},
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"$schema": "https://opencode.ai/config.json",
|
|
49
|
-
"model": "openai/gpt-5.
|
|
49
|
+
"model": "openai/gpt-5.4"
|
|
50
50
|
}
|