test(release): use stable OpenAI model for Parallels smoke · openclaw/openclaw@70cd792
steipete
·
2026-05-02
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -248,7 +248,7 @@ gh workflow run package-acceptance.yml --ref main \
|
248 | 248 | - Use `--platform macos`, `--platform windows`, or `--platform linux` while |
249 | 249 | iterating on one guest. Use `--json` for the summary artifact path and |
250 | 250 | per-lane status. |
251 | | -- The OpenAI lane uses `openai/gpt-5.5` for the live agent-turn proof by |
| 251 | +- The OpenAI lane uses `openai/gpt-5.4` for the live agent-turn proof by |
252 | 252 | default. Pass `--model <provider/model>` or set |
253 | 253 | `OPENCLAW_PARALLELS_OPENAI_MODEL` when deliberately validating another |
254 | 254 | OpenAI model. |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -42,7 +42,7 @@ export function resolveProviderAuth(input: {
|
42 | 42 | apiKeyEnv: input.apiKeyEnv || "OPENAI_API_KEY", |
43 | 43 | authChoice: "openai-api-key", |
44 | 44 | authKeyFlag: "openai-api-key", |
45 | | -modelId: input.modelId || process.env.OPENCLAW_PARALLELS_OPENAI_MODEL || "openai/gpt-5.5", |
| 45 | +modelId: input.modelId || process.env.OPENCLAW_PARALLELS_OPENAI_MODEL || "openai/gpt-5.4", |
46 | 46 | }, |
47 | 47 | }; |
48 | 48 | const resolved = providerDefaults[input.provider]; |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -88,7 +88,7 @@ describe("Parallels smoke model selection", () => {
|
88 | 88 | |
89 | 89 | expect(providerAuth).toContain("OPENCLAW_PARALLELS_OPENAI_MODEL"); |
90 | 90 | expect(providerAuth).toContain("OPENCLAW_PARALLELS_WINDOWS_OPENAI_MODEL"); |
91 | | -expect(providerAuth).toContain("openai/gpt-5.5"); |
| 91 | +expect(providerAuth).toContain("openai/gpt-5.4"); |
92 | 92 | expect(providerAuth).toContain("openai/gpt-4.1-mini"); |
93 | 93 | expect(providerAuth).toContain('authChoice: "openai-api-key"'); |
94 | 94 | expect(providerAuth).toContain('authChoice: "apiKey"'); |
@@ -227,7 +227,7 @@ console.log(resolveUbuntuVmName("Ubuntu missing"));
|
227 | 227 | apiKeyValue: "sk-openai", |
228 | 228 | authChoice: "openai-api-key", |
229 | 229 | authKeyFlag: "openai-api-key", |
230 | | -modelId: "openai/gpt-5.5", |
| 230 | +modelId: "openai/gpt-5.4", |
231 | 231 | }); |
232 | 232 | |
233 | 233 | expect( |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。