mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:50:43 +00:00
test(live): prefer stable OpenAI cache model
This commit is contained in:
@@ -562,7 +562,7 @@ export async function runLiveCacheRegression(): Promise<LiveCacheRegressionResul
|
||||
provider: "openai",
|
||||
api: "openai-responses",
|
||||
envVar: "OPENCLAW_LIVE_OPENAI_CACHE_MODEL",
|
||||
preferredModelIds: ["gpt-5.5", "gpt-5.4-mini", "gpt-5.4", "gpt-5.2"],
|
||||
preferredModelIds: ["gpt-5.2", "gpt-5.4-mini", "gpt-5.4", "gpt-5.5"],
|
||||
});
|
||||
const anthropic = await resolveLiveDirectModel({
|
||||
provider: "anthropic",
|
||||
|
||||
@@ -542,7 +542,7 @@ describe("resolveGatewayLiveSuiteTimeoutMs", () => {
|
||||
});
|
||||
|
||||
it("scales model-capped sweeps for multi-probe retries", () => {
|
||||
expect(resolveGatewayLiveSuiteTimeoutMs(2)).toBeGreaterThan(GATEWAY_LIVE_DEFAULT_TIMEOUT_MS);
|
||||
expect(resolveGatewayLiveSuiteTimeoutMs(3)).toBeGreaterThan(GATEWAY_LIVE_DEFAULT_TIMEOUT_MS);
|
||||
});
|
||||
|
||||
it("caps very large model sweeps", () => {
|
||||
|
||||
Reference in New Issue
Block a user