惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
宝玉的分享
宝玉的分享
美团技术团队
量子位
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
爱范儿
爱范儿
J
Java Code Geeks
博客园 - Franky
Last Week in AI
Last Week in AI
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
GbyAI
GbyAI
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor: centralize live provider drift policy (#82033) ...
steipete · 2026-05-15 · via Recent Commits to openclaw:main

@@ -15,12 +15,10 @@ import {

1515

extractAssistantText,

1616

type LiveResolvedModel,

1717

logLiveCache,

18-

resolveLiveDirectModel,

18+

resolveLiveDirectModelPool,

19+

withLiveDirectModelApiKey,

1920

} from "./live-cache-test-support.js";

20-

import {

21-

isAuthErrorMessage,

22-

isBillingErrorMessage,

23-

} from "./pi-embedded-helpers/failover-matches.js";

21+

import { shouldSkipLiveProviderDrift } from "./live-test-provider-drift.js";

24222523

const OPENAI_TIMEOUT_MS = 120_000;

2624

const ANTHROPIC_TIMEOUT_MS = 120_000;

@@ -603,53 +601,52 @@ function appendBaselineFindings(target: BaselineFindings, source: BaselineFindin

603601

target.warnings.push(...source.warnings);

604602

}

605603606-

function isAnthropicAccountDrift(error: unknown): boolean {

607-

const message = error instanceof Error ? error.message : String(error);

608-

return isBillingErrorMessage(message) || isAuthErrorMessage(message);

609-

}

610-611604

function isAnthropicEmptyCacheProbe(error: unknown): boolean {

612605

return error instanceof CacheProbeTextMismatchError && error.text.trim().length === 0;

613606

}

614607615-

function cloneFixtureWithKey(fixture: LiveResolvedModel, apiKey: string): LiveResolvedModel {

616-

return { ...fixture, apiKey };

608+

function shouldSkipAnthropicCacheProviderDrift(error: unknown): boolean {

609+

return Boolean(

610+

shouldSkipLiveProviderDrift({

611+

error,

612+

allowAuth: true,

613+

allowBilling: true,

614+

}),

615+

);

617616

}

618617619618

async function runAnthropicCacheLane(params: {

619+

apiKeys: readonly string[];

620620

fixture: LiveResolvedModel;

621621

lane: CacheLane;

622622

pngBase64: string;

623623

runToken: string;

624624

warnings: string[];

625625

}): Promise<{ attempt?: Awaited<ReturnType<typeof runRepeatedLaneWithBaselineRetry>> }> {

626-

const keys =

627-

params.fixture.apiKeys && params.fixture.apiKeys.length > 0

628-

? params.fixture.apiKeys

629-

: [params.fixture.apiKey];

626+

const keys = params.apiKeys.length > 0 ? params.apiKeys : [params.fixture.apiKey];

630627

let lastError: unknown;

631628

for (const [index, apiKey] of keys.entries()) {

632629

try {

633630

return {

634631

attempt: await runRepeatedLaneWithBaselineRetry({

635632

lane: params.lane,

636633

providerTag: "anthropic",

637-

fixture: cloneFixtureWithKey(params.fixture, apiKey),

634+

fixture: withLiveDirectModelApiKey(params.fixture, apiKey),

638635

runToken: params.runToken,

639636

pngBase64: params.pngBase64,

640637

}),

641638

};

642639

} catch (error) {

643640

lastError = error;

644-

if (isAnthropicAccountDrift(error) && index + 1 < keys.length) {

641+

if (shouldSkipAnthropicCacheProviderDrift(error) && index + 1 < keys.length) {

645642

logLiveCache(`anthropic ${params.lane} account drift; retrying with next key`);

646643

continue;

647644

}

648645

break;

649646

}

650647

}

651648652-

if (isAnthropicAccountDrift(lastError) || isAnthropicEmptyCacheProbe(lastError)) {

649+

if (shouldSkipAnthropicCacheProviderDrift(lastError) || isAnthropicEmptyCacheProbe(lastError)) {

653650

const reason = isAnthropicEmptyCacheProbe(lastError) ? "empty response" : "account drift";

654651

const warning = `anthropic ${params.lane} skipped: ${reason}`;

655652

params.warnings.push(warning);

@@ -671,7 +668,7 @@ async function runAnthropicDisabledCacheLane(params: {

671668

sessionId: `live-cache-regression-${params.runToken}-anthropic-disabled`,

672669

});

673670

} catch (error) {

674-

if (isAnthropicAccountDrift(error) || isAnthropicEmptyCacheProbe(error)) {

671+

if (shouldSkipAnthropicCacheProviderDrift(error) || isAnthropicEmptyCacheProbe(error)) {

675672

const warning = "anthropic disabled skipped: account drift";

676673

params.warnings.push(warning);

677674

logLiveCache(warning);

@@ -684,7 +681,6 @@ async function runAnthropicDisabledCacheLane(params: {

684681

export const __testing = {

685682

assertAgainstBaseline,

686683

evaluateAgainstBaseline,

687-

isAnthropicAccountDrift,

688684

resolveCacheProbeMaxTokens,

689685

shouldAcceptEmptyCacheProbe,

690686

shouldRetryCacheProbeText,

@@ -694,13 +690,13 @@ export const __testing = {

694690

export async function runLiveCacheRegression(): Promise<LiveCacheRegressionResult> {

695691

const pngBase64 = (await fs.readFile(LIVE_TEST_PNG_URL)).toString("base64");

696692

const runToken = randomUUID().slice(0, 13);

697-

const openai = await resolveLiveDirectModel({

693+

const openai = await resolveLiveDirectModelPool({

698694

provider: "openai",

699695

api: "openai-responses",

700696

envVar: "OPENCLAW_LIVE_OPENAI_CACHE_MODEL",

701697

preferredModelIds: ["gpt-4.1", "gpt-5.2", "gpt-5.4-mini", "gpt-5.4", "gpt-5.5"],

702698

});

703-

const anthropic = await resolveLiveDirectModel({

699+

const anthropic = await resolveLiveDirectModelPool({

704700

provider: "anthropic",

705701

api: "anthropic-messages",

706702

envVar: "OPENCLAW_LIVE_ANTHROPIC_CACHE_MODEL",

@@ -718,7 +714,7 @@ export async function runLiveCacheRegression(): Promise<LiveCacheRegressionResul

718714

const openaiAttempt = await runRepeatedLaneWithBaselineRetry({

719715

lane,

720716

providerTag: "openai",

721-

fixture: openai,

717+

fixture: openai.fixture,

722718

runToken,

723719

pngBase64,

724720

});

@@ -738,8 +734,9 @@ export async function runLiveCacheRegression(): Promise<LiveCacheRegressionResul

738734

appendBaselineFindings({ regressions, warnings }, openaiAttempt.findings);

739735740736

const { attempt: anthropicAttempt } = await runAnthropicCacheLane({

737+

apiKeys: anthropic.apiKeys,

741738

lane,

742-

fixture: anthropic,

739+

fixture: anthropic.fixture,

743740

runToken,

744741

pngBase64,

745742

warnings,

@@ -765,7 +762,7 @@ export async function runLiveCacheRegression(): Promise<LiveCacheRegressionResul

765762

}

766763767764

const disabled = await runAnthropicDisabledCacheLane({

768-

fixture: anthropic,

765+

fixture: anthropic.fixture,

769766

runToken,

770767

warnings,

771768

});