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

推荐订阅源

WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
雷峰网
雷峰网
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
V
V2EX
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
Vercel News
Vercel News
美团技术团队
人人都是产品经理
人人都是产品经理
The Cloudflare 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
fix(google): omit request config with cached content · op...
neeravmakwan · 2026-05-26 · via Recent Commits to openclaw:main

@@ -31,6 +31,8 @@ type GooglePromptCacheModel = Model<Api> & {

3131

headers?: Record<string, string>;

3232

provider: string;

3333

};

34+

type GooglePromptCacheContext = Parameters<StreamFn>[1];

35+

type GooglePromptCacheOptions = Parameters<StreamFn>[2];

34363537

type GooglePromptCacheEntry = {

3638

timestamp: number;

@@ -39,6 +41,7 @@ type GooglePromptCacheEntry = {

3941

modelApi?: string | null;

4042

baseUrl: string;

4143

systemPromptDigest: string;

44+

cacheConfigDigest?: string;

4245

cacheRetention: CacheRetention;

4346

} & (

4447

| {

@@ -111,6 +114,7 @@ function buildGooglePromptCacheMatchKey(params: {

111114

modelApi?: string | null;

112115

baseUrl: string;

113116

systemPromptDigest: string;

117+

cacheConfigDigest?: string;

114118

}) {

115119

return stableStringify(params);

116120

}

@@ -150,6 +154,8 @@ function readLatestGooglePromptCacheEntry(

150154

: null,

151155

baseUrl: stringifyGooglePromptCacheKeyPart(cacheData.baseUrl),

152156

systemPromptDigest: stringifyGooglePromptCacheKeyPart(cacheData.systemPromptDigest),

157+

cacheConfigDigest:

158+

typeof cacheData.cacheConfigDigest === "string" ? cacheData.cacheConfigDigest : undefined,

153159

});

154160

if (candidateKey === matchKey) {

155161

return data as GooglePromptCacheEntry;

@@ -183,13 +189,79 @@ function parseExpireTimeMs(expireTime: string | undefined): number | null {

183189

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

184190

}

185191186-

function buildManagedContextWithoutSystemPrompt(context: Parameters<StreamFn>[1]) {

187-

if (!context.systemPrompt) {

192+

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

193+

if (tools.length === 0) {

194+

return undefined;

195+

}

196+

return [

197+

{

198+

functionDeclarations: tools.map((tool) => ({

199+

name: tool.name,

200+

description: tool.description,

201+

parametersJsonSchema: tool.parameters,

202+

})),

203+

},

204+

];

205+

}

206+207+

function mapManagedGoogleToolChoice(

208+

choice: unknown,

209+

): { mode: "AUTO" | "NONE" | "ANY"; allowedFunctionNames?: string[] } | undefined {

210+

if (!choice) {

211+

return undefined;

212+

}

213+

if (

214+

typeof choice === "object" &&

215+

choice !== null &&

216+

(choice as { type?: unknown }).type === "function"

217+

) {

218+

const functionName = (choice as { function?: { name?: unknown } }).function?.name;

219+

return typeof functionName === "string"

220+

? { mode: "ANY", allowedFunctionNames: [functionName] }

221+

: { mode: "ANY" };

222+

}

223+

switch (choice) {

224+

case "none":

225+

return { mode: "NONE" };

226+

case "any":

227+

case "required":

228+

return { mode: "ANY" };

229+

default:

230+

return { mode: "AUTO" };

231+

}

232+

}

233+234+

function buildManagedGooglePromptCacheConfig(

235+

context: GooglePromptCacheContext,

236+

options: GooglePromptCacheOptions,

237+

) {

238+

const tools = context.tools?.length ? convertManagedGoogleTools(context.tools) : undefined;

239+

const toolChoice = tools

240+

? mapManagedGoogleToolChoice((options as { toolChoice?: unknown } | undefined)?.toolChoice)

241+

: undefined;

242+

const toolConfig = toolChoice ? { functionCallingConfig: toolChoice } : undefined;

243+

const cacheConfigDigest =

244+

tools || toolConfig

245+

? stableStringify({

246+

tools,

247+

toolConfig,

248+

})

249+

: undefined;

250+

return {

251+

cacheConfigDigest,

252+

tools,

253+

toolConfig,

254+

};

255+

}

256+257+

function buildManagedContextForCachedContent(context: GooglePromptCacheContext) {

258+

if (!context.systemPrompt && !context.tools?.length) {

188259

return context;

189260

}

190261

return {

191262

...context,

192263

systemPrompt: undefined,

264+

tools: undefined,

193265

};

194266

}

195267

@@ -229,6 +301,8 @@ async function createGooglePromptCache(params: {

229301

modelId: string;

230302

signal?: AbortSignal;

231303

systemPrompt: string;

304+

tools?: unknown;

305+

toolConfig?: unknown;

232306

}): Promise<{ cachedContent: string; expireTime?: string } | null> {

233307

const response = await params.fetchImpl(`${params.baseUrl}/cachedContents`, {

234308

method: "POST",

@@ -239,6 +313,8 @@ async function createGooglePromptCache(params: {

239313

systemInstruction: {

240314

parts: [{ text: params.systemPrompt }],

241315

},

316+

...(params.tools ? { tools: params.tools } : {}),

317+

...(params.toolConfig ? { toolConfig: params.toolConfig } : {}),

242318

}),

243319

signal: params.signal,

244320

});

@@ -256,9 +332,12 @@ async function ensureGooglePromptCache(

256332

cacheRetention: CacheRetention;

257333

model: GooglePromptCacheModel;

258334

provider: string;

335+

cacheConfigDigest?: string;

259336

sessionManager: GooglePromptCacheSessionManager;

260337

signal?: AbortSignal;

261338

systemPrompt: string;

339+

tools?: unknown;

340+

toolConfig?: unknown;

262341

},

263342

deps: GooglePromptCacheDeps,

264343

): Promise<string | null> {

@@ -271,6 +350,7 @@ async function ensureGooglePromptCache(

271350

modelApi: params.model.api,

272351

baseUrl,

273352

systemPromptDigest,

353+

cacheConfigDigest: params.cacheConfigDigest,

274354

});

275355

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

276356

@@ -306,6 +386,7 @@ async function ensureGooglePromptCache(

306386

modelApi: params.model.api,

307387

baseUrl,

308388

systemPromptDigest,

389+

cacheConfigDigest: params.cacheConfigDigest,

309390

cacheRetention: params.cacheRetention,

310391

cachedContent: latestEntry.cachedContent,

311392

expireTime: refreshed.expireTime ?? latestEntry.expireTime,

@@ -325,6 +406,8 @@ async function ensureGooglePromptCache(

325406

modelId: params.model.id,

326407

signal: params.signal,

327408

systemPrompt: params.systemPrompt,

409+

tools: params.tools,

410+

toolConfig: params.toolConfig,

328411

});

329412

if (!created) {

330413

await appendGooglePromptCacheEntry(params.sessionManager, {

@@ -335,6 +418,7 @@ async function ensureGooglePromptCache(

335418

modelApi: params.model.api,

336419

baseUrl,

337420

systemPromptDigest,

421+

cacheConfigDigest: params.cacheConfigDigest,

338422

cacheRetention: params.cacheRetention,

339423

retryAfter: now + GOOGLE_PROMPT_CACHE_RETRY_BACKOFF_MS,

340424

});

@@ -349,6 +433,7 @@ async function ensureGooglePromptCache(

349433

modelApi: params.model.api,

350434

baseUrl,

351435

systemPromptDigest,

436+

cacheConfigDigest: params.cacheConfigDigest,

352437

cacheRetention: params.cacheRetention,

353438

cachedContent: created.cachedContent,

354439

expireTime: created.expireTime,

@@ -386,15 +471,19 @@ export async function prepareGooglePromptCacheStreamFn(

386471387472

const inner = params.streamFn;

388473

return async (model, context, options) => {

474+

const cacheConfig = buildManagedGooglePromptCacheConfig(context, options);

389475

const cachedContent = await ensureGooglePromptCache(

390476

{

391477

apiKey,

478+

cacheConfigDigest: cacheConfig.cacheConfigDigest,

392479

cacheRetention: resolvedRetention,

393480

model: params.model,

394481

provider: params.provider,

395482

sessionManager: params.sessionManager,

396483

signal: params.signal,

397484

systemPrompt,

485+

tools: cacheConfig.tools,

486+

toolConfig: cacheConfig.toolConfig,

398487

},

399488

deps,

400489

);

@@ -408,7 +497,7 @@ export async function prepareGooglePromptCacheStreamFn(

408497

return streamWithPayloadPatch(

409498

inner,

410499

model,

411-

buildManagedContextWithoutSystemPrompt(context),

500+

buildManagedContextForCachedContent(context),

412501

options,

413502

(payload) => {

414503

payload.cachedContent = cachedContent;