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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

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: source model catalog types from core · openclaw...
authority.ts · 2026-05-31 · via Recent Commits to openclaw:main

@@ -16,11 +16,13 @@ import {

1616

type ModelCatalogInput,

1717

type ModelCatalogMediaInputConfig,

1818

type ModelCatalogModel,

19+

type ModelCatalogOpenRouterRouting,

1920

type ModelCatalogProvider,

2021

type ModelCatalogSource,

2122

type ModelCatalogStatus,

2223

type ModelCatalogSuppression,

2324

type ModelCatalogTieredCost,

25+

type ModelCatalogVercelGatewayRouting,

2426

type NormalizedModelCatalogRow,

2527

} from "./model-catalog-types.js";

2628

@@ -119,6 +121,14 @@ function normalizeNonNegativeNumber(value: unknown): number | undefined {

119121

return typeof value === "number" && Number.isFinite(value) && value >= 0 ? value : undefined;

120122

}

121123124+

function normalizeFiniteNumber(value: unknown): number | undefined {

125+

return typeof value === "number" && Number.isFinite(value) ? value : undefined;

126+

}

127+128+

function normalizeStringOrNumber(value: unknown): string | number | undefined {

129+

return normalizeOptionalString(value) ?? normalizeFiniteNumber(value);

130+

}

131+122132

function normalizePositiveNumber(value: unknown): number | undefined {

123133

return typeof value === "number" && Number.isFinite(value) && value > 0 ? value : undefined;

124134

}

@@ -187,6 +197,144 @@ function normalizeModelCatalogCost(value: unknown): ModelCatalogCost | undefined

187197

return Object.keys(cost).length > 0 ? cost : undefined;

188198

}

189199200+

function normalizeOpenRouterPrice(value: unknown): ModelCatalogOpenRouterRouting["max_price"] {

201+

if (!isRecord(value)) {

202+

return undefined;

203+

}

204+

const maxPrice = {

205+

...(normalizeStringOrNumber(value.prompt) !== undefined

206+

? { prompt: normalizeStringOrNumber(value.prompt) }

207+

: {}),

208+

...(normalizeStringOrNumber(value.completion) !== undefined

209+

? { completion: normalizeStringOrNumber(value.completion) }

210+

: {}),

211+

...(normalizeStringOrNumber(value.image) !== undefined

212+

? { image: normalizeStringOrNumber(value.image) }

213+

: {}),

214+

...(normalizeStringOrNumber(value.audio) !== undefined

215+

? { audio: normalizeStringOrNumber(value.audio) }

216+

: {}),

217+

...(normalizeStringOrNumber(value.request) !== undefined

218+

? { request: normalizeStringOrNumber(value.request) }

219+

: {}),

220+

} satisfies NonNullable<ModelCatalogOpenRouterRouting["max_price"]>;

221+

return Object.keys(maxPrice).length > 0 ? maxPrice : undefined;

222+

}

223+224+

function normalizeOpenRouterPercentileCutoffs(

225+

value: unknown,

226+

):

227+

| NonNullable<Exclude<ModelCatalogOpenRouterRouting["preferred_min_throughput"], number>>

228+

| undefined {

229+

if (!isRecord(value)) {

230+

return undefined;

231+

}

232+

const normalized = {

233+

...(normalizeFiniteNumber(value.p50) !== undefined

234+

? { p50: normalizeFiniteNumber(value.p50) }

235+

: {}),

236+

...(normalizeFiniteNumber(value.p75) !== undefined

237+

? { p75: normalizeFiniteNumber(value.p75) }

238+

: {}),

239+

...(normalizeFiniteNumber(value.p90) !== undefined

240+

? { p90: normalizeFiniteNumber(value.p90) }

241+

: {}),

242+

...(normalizeFiniteNumber(value.p99) !== undefined

243+

? { p99: normalizeFiniteNumber(value.p99) }

244+

: {}),

245+

};

246+

return Object.keys(normalized).length > 0 ? normalized : undefined;

247+

}

248+249+

function normalizeOpenRouterMetricPreference(

250+

value: unknown,

251+

): ModelCatalogOpenRouterRouting["preferred_min_throughput"] {

252+

return normalizeFiniteNumber(value) ?? normalizeOpenRouterPercentileCutoffs(value);

253+

}

254+255+

function normalizeOpenRouterSort(value: unknown): ModelCatalogOpenRouterRouting["sort"] {

256+

const sort = normalizeOptionalString(value);

257+

if (sort) {

258+

return sort;

259+

}

260+

if (!isRecord(value)) {

261+

return undefined;

262+

}

263+

const by = normalizeOptionalString(value.by);

264+

const partition =

265+

value.partition === null ? null : (normalizeOptionalString(value.partition) ?? undefined);

266+

const normalized = {

267+

...(by ? { by } : {}),

268+

...(partition !== undefined ? { partition } : {}),

269+

} satisfies NonNullable<Exclude<ModelCatalogOpenRouterRouting["sort"], string>>;

270+

return Object.keys(normalized).length > 0 ? normalized : undefined;

271+

}

272+273+

function normalizeOpenRouterRouting(value: unknown): ModelCatalogOpenRouterRouting | undefined {

274+

if (!isRecord(value)) {

275+

return undefined;

276+

}

277+

const routing = {

278+

...(typeof value.allow_fallbacks === "boolean"

279+

? { allow_fallbacks: value.allow_fallbacks }

280+

: {}),

281+

...(typeof value.require_parameters === "boolean"

282+

? { require_parameters: value.require_parameters }

283+

: {}),

284+

...(value.data_collection === "deny" || value.data_collection === "allow"

285+

? { data_collection: value.data_collection }

286+

: {}),

287+

...(typeof value.zdr === "boolean" ? { zdr: value.zdr } : {}),

288+

...(typeof value.enforce_distillable_text === "boolean"

289+

? { enforce_distillable_text: value.enforce_distillable_text }

290+

: {}),

291+

...(normalizeOptionalTrimmedStringList(value.order)

292+

? { order: normalizeOptionalTrimmedStringList(value.order) }

293+

: {}),

294+

...(normalizeOptionalTrimmedStringList(value.only)

295+

? { only: normalizeOptionalTrimmedStringList(value.only) }

296+

: {}),

297+

...(normalizeOptionalTrimmedStringList(value.ignore)

298+

? { ignore: normalizeOptionalTrimmedStringList(value.ignore) }

299+

: {}),

300+

...(normalizeOptionalTrimmedStringList(value.quantizations)

301+

? { quantizations: normalizeOptionalTrimmedStringList(value.quantizations) }

302+

: {}),

303+

...(normalizeOpenRouterSort(value.sort) ? { sort: normalizeOpenRouterSort(value.sort) } : {}),

304+

...(normalizeOpenRouterPrice(value.max_price)

305+

? { max_price: normalizeOpenRouterPrice(value.max_price) }

306+

: {}),

307+

...(normalizeOpenRouterMetricPreference(value.preferred_min_throughput) !== undefined

308+

? {

309+

preferred_min_throughput: normalizeOpenRouterMetricPreference(

310+

value.preferred_min_throughput,

311+

),

312+

}

313+

: {}),

314+

...(normalizeOpenRouterMetricPreference(value.preferred_max_latency) !== undefined

315+

? { preferred_max_latency: normalizeOpenRouterMetricPreference(value.preferred_max_latency) }

316+

: {}),

317+

} satisfies ModelCatalogOpenRouterRouting;

318+

return Object.keys(routing).length > 0 ? routing : undefined;

319+

}

320+321+

function normalizeVercelGatewayRouting(

322+

value: unknown,

323+

): ModelCatalogVercelGatewayRouting | undefined {

324+

if (!isRecord(value)) {

325+

return undefined;

326+

}

327+

const routing = {

328+

...(normalizeOptionalTrimmedStringList(value.only)

329+

? { only: normalizeOptionalTrimmedStringList(value.only) }

330+

: {}),

331+

...(normalizeOptionalTrimmedStringList(value.order)

332+

? { order: normalizeOptionalTrimmedStringList(value.order) }

333+

: {}),

334+

} satisfies ModelCatalogVercelGatewayRouting;

335+

return Object.keys(routing).length > 0 ? routing : undefined;

336+

}

337+190338

function normalizeModelCatalogCompat(value: unknown): ModelCatalogCompatConfig | undefined {

191339

if (!isRecord(value)) {

192340

return undefined;

@@ -205,6 +353,11 @@ function normalizeModelCatalogCompat(value: unknown): ModelCatalogCompatConfig |

205353

"requiresToolResultName",

206354

"requiresAssistantAfterToolResult",

207355

"requiresThinkingAsText",

356+

"zaiToolStream",

357+

"sendSessionAffinityHeaders",

358+

"sendSessionIdHeader",

359+

"supportsEagerToolInputStreaming",

360+

"supportsLongCacheRetention",

208361

"nativeWebSearchTool",

209362

"requiresMistralToolIds",

210363

"requiresOpenAiAnthropicToolPayload",

@@ -256,6 +409,20 @@ function normalizeModelCatalogCompat(value: unknown): ModelCatalogCompatConfig |

256409

compat.thinkingFormat = thinkingFormat;

257410

}

258411412+

if (value.cacheControlFormat === "anthropic") {

413+

compat.cacheControlFormat = "anthropic";

414+

}

415+416+

const openRouterRouting = normalizeOpenRouterRouting(value.openRouterRouting);

417+

if (openRouterRouting) {

418+

compat.openRouterRouting = openRouterRouting;

419+

}

420+421+

const vercelGatewayRouting = normalizeVercelGatewayRouting(value.vercelGatewayRouting);

422+

if (vercelGatewayRouting) {

423+

compat.vercelGatewayRouting = vercelGatewayRouting;

424+

}

425+259426

return Object.keys(compat).length > 0 ? (compat as ModelCatalogCompatConfig) : undefined;

260427

}

261428