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

推荐订阅源

博客园_首页
N
Netflix TechBlog - Medium
V
Visual Studio Blog
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
量子位
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
V
V2EX
The Cloudflare Blog
月光博客
月光博客
Last Week in AI
Last Week in AI
雷峰网
雷峰网
WordPress大学
WordPress大学
博客园 - 【当耐特】
博客园 - 聂微东
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
fix(agents): bound google prompt cache expiry · openclaw/...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

@@ -3,6 +3,11 @@ import { parseGeminiAuth } from "../../infra/gemini-auth.js";

33

import { normalizeGoogleApiBaseUrl } from "../../infra/google-api-base-url.js";

44

import { streamWithPayloadPatch } from "../../llm/providers/stream-wrappers/stream-payload-utils.js";

55

import type { Model } from "../../llm/types.js";

6+

import {

7+

asDateTimestampMs,

8+

isFutureDateTimestampMs,

9+

resolveExpiresAtMsFromDurationMs,

10+

} from "../../shared/number-coercion.js";

611

import { normalizeOptionalString } from "../../shared/string-coerce.js";

712

import { buildGuardedModelFetch } from "../provider-transport-fetch.js";

813

import type { StreamFn } from "../runtime/index.js";

@@ -185,8 +190,7 @@ function parseExpireTimeMs(expireTime: string | undefined): number | null {

185190

if (!expireTime) {

186191

return null;

187192

}

188-

const timestamp = Date.parse(expireTime);

189-

return Number.isFinite(timestamp) ? timestamp : null;

193+

return asDateTimestampMs(Date.parse(expireTime)) ?? null;

190194

}

191195192196

function convertManagedGoogleTools(tools: NonNullable<GooglePromptCacheContext["tools"]>) {

@@ -342,7 +346,10 @@ async function ensureGooglePromptCache(

342346

deps: GooglePromptCacheDeps,

343347

): Promise<string | null> {

344348

const baseUrl = normalizeGoogleApiBaseUrl(params.model.baseUrl);

345-

const now = deps.now?.() ?? Date.now();

349+

const now = asDateTimestampMs(deps.now?.() ?? Date.now());

350+

if (now === undefined) {

351+

return null;

352+

}

346353

const systemPromptDigest = digestSystemPrompt(params.systemPrompt);

347354

const matchKey = buildGooglePromptCacheMatchKey({

348355

provider: params.provider,

@@ -354,15 +361,18 @@ async function ensureGooglePromptCache(

354361

});

355362

const latestEntry = readLatestGooglePromptCacheEntry(params.sessionManager, matchKey);

356363357-

if (latestEntry?.status === "failed" && latestEntry.retryAfter > now) {

364+

if (

365+

latestEntry?.status === "failed" &&

366+

isFutureDateTimestampMs(latestEntry.retryAfter, { nowMs: now })

367+

) {

358368

return null;

359369

}

360370361371

const fetchImpl = (deps.buildGuardedFetch ?? buildGuardedModelFetch)(params.model);

362372

const refreshWindowMs = resolveGooglePromptCacheRefreshWindowMs(params.cacheRetention);

363373

if (latestEntry?.status === "ready" && latestEntry.cachedContent) {

364374

const expiresAt = parseExpireTimeMs(latestEntry.expireTime);

365-

const isExpired = expiresAt !== null && expiresAt <= now;

375+

const isExpired = expiresAt !== null && !isFutureDateTimestampMs(expiresAt, { nowMs: now });

366376

if (!isExpired) {

367377

const needsRefresh = expiresAt !== null && expiresAt - now <= refreshWindowMs;

368378

if (!needsRefresh) {

@@ -420,7 +430,8 @@ async function ensureGooglePromptCache(

420430

systemPromptDigest,

421431

cacheConfigDigest: params.cacheConfigDigest,

422432

cacheRetention: params.cacheRetention,

423-

retryAfter: now + GOOGLE_PROMPT_CACHE_RETRY_BACKOFF_MS,

433+

retryAfter:

434+

resolveExpiresAtMsFromDurationMs(GOOGLE_PROMPT_CACHE_RETRY_BACKOFF_MS, { nowMs: now }) ?? 0,

424435

});

425436

return null;

426437

}