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

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
小众软件
小众软件
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub 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: trim provider helper exports · openclaw/opencla...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -12,7 +12,7 @@ type DdgPluginConfig = {

1212

};

1313

};

1414
15-

export function resolveDdgWebSearchConfig(

15+

function resolveDdgWebSearchConfig(

1616

config?: OpenClawConfig,

1717

): DdgPluginConfig["webSearch"] | undefined {

1818

const pluginConfig = config?.plugins?.entries?.duckduckgo?.config as DdgPluginConfig | undefined;

Original file line numberDiff line numberDiff line change

@@ -86,7 +86,7 @@ export function resolveFirecrawlSearchConfig(cfg?: OpenClawConfig): FirecrawlSea

8686

return firecrawl as FirecrawlSearchConfig;

8787

}

8888
89-

export function resolveFirecrawlFetchConfig(cfg?: OpenClawConfig): FirecrawlFetchConfig {

89+

function resolveFirecrawlFetchConfig(cfg?: OpenClawConfig): FirecrawlFetchConfig {

9090

const pluginConfig = cfg?.plugins?.entries?.firecrawl?.config as PluginEntryConfig;

9191

const pluginWebFetch = pluginConfig?.webFetch;

9292

if (pluginWebFetch && typeof pluginWebFetch === "object" && !Array.isArray(pluginWebFetch)) {

Original file line numberDiff line numberDiff line change

@@ -8,8 +8,8 @@ export const AUTH_URL = "https://accounts.google.com/o/oauth2/v2/auth";

88

export const TOKEN_URL = "https://oauth2.googleapis.com/token";

99

export const USERINFO_URL = "https://www.googleapis.com/oauth2/v1/userinfo?alt=json";

1010

export const CODE_ASSIST_ENDPOINT_PROD = "https://cloudcode-pa.googleapis.com";

11-

export const CODE_ASSIST_ENDPOINT_DAILY = "https://daily-cloudcode-pa.sandbox.googleapis.com";

12-

export const CODE_ASSIST_ENDPOINT_AUTOPUSH = "https://autopush-cloudcode-pa.sandbox.googleapis.com";

11+

const CODE_ASSIST_ENDPOINT_DAILY = "https://daily-cloudcode-pa.sandbox.googleapis.com";

12+

const CODE_ASSIST_ENDPOINT_AUTOPUSH = "https://autopush-cloudcode-pa.sandbox.googleapis.com";

1313

export const LOAD_CODE_ASSIST_ENDPOINTS = [

1414

CODE_ASSIST_ENDPOINT_PROD,

1515

CODE_ASSIST_ENDPOINT_DAILY,

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,4 @@

1-

export const DEFAULT_GEMINI_WEB_SEARCH_MODEL = "gemini-2.5-flash";

1+

const DEFAULT_GEMINI_WEB_SEARCH_MODEL = "gemini-2.5-flash";

22
33

export type GeminiConfig = {

44

apiKey?: unknown;

Original file line numberDiff line numberDiff line change

@@ -28,15 +28,15 @@ function getOAuthEndpoints(region: MiniMaxRegion) {

2828

};

2929

}

3030
31-

export type MiniMaxOAuthAuthorization = {

31+

type MiniMaxOAuthAuthorization = {

3232

user_code: string;

3333

verification_uri: string;

3434

expired_in: number;

3535

interval?: number;

3636

state: string;

3737

};

3838
39-

export type MiniMaxOAuthToken = {

39+

type MiniMaxOAuthToken = {

4040

access: string;

4141

refresh: string;

4242

expires: number;

Original file line numberDiff line numberDiff line change

@@ -20,7 +20,7 @@ export const MISTRAL_MODEL_TRANSPORT_PATCH = {

2020

maxTokensField: "max_tokens";

2121

};

2222
23-

export const MISTRAL_SMALL_LATEST_REASONING_EFFORT_MAP: Record<string, string> = {

23+

const MISTRAL_SMALL_LATEST_REASONING_EFFORT_MAP: Record<string, string> = {

2424

off: "none",

2525

minimal: "none",

2626

low: "high",

Original file line numberDiff line numberDiff line change

@@ -8,7 +8,7 @@ import { contributeMistralResolvedModelCompat } from "./provider-compat.js";

88

import { buildMistralRealtimeTranscriptionProvider } from "./realtime-transcription-provider.js";

99
1010

const PROVIDER_ID = "mistral";

11-

export function buildMistralReplayPolicy() {

11+

function buildMistralReplayPolicy() {

1212

return {

1313

sanitizeToolCallIds: true,

1414

toolCallIdMode: "strict9" as const,

Original file line numberDiff line numberDiff line change

@@ -23,7 +23,7 @@ function isMistralModelHint(modelId: string): boolean {

2323

);

2424

}

2525
26-

export function shouldContributeMistralCompat(params: {

26+

function shouldContributeMistralCompat(params: {

2727

modelId: string;

2828

model: { api?: unknown; baseUrl?: unknown; provider?: unknown; compat?: unknown };

2929

}): boolean {

Original file line numberDiff line numberDiff line change

@@ -13,7 +13,7 @@ const DEFAULT_CLUSTER = "volcano_tts";

1313

const DEFAULT_RESOURCE_ID = "seed-tts-1.0";

1414

const DEFAULT_APP_KEY = "aGjiRDfUWi";

1515
16-

export const VOLCENGINE_VOICES: readonly string[] = [

16+

const VOLCENGINE_VOICES: readonly string[] = [

1717

"en_female_anna_mars_bigtts",

1818

"en_male_adam_mars_bigtts",

1919

"en_female_sarah_mars_bigtts",

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import { fetchWithSsrFGuard } from "openclaw/plugin-sdk/ssrf-runtime";

33
44

export type VolcengineTtsEncoding = "ogg_opus" | "mp3" | "pcm" | "wav";

55
6-

export type VolcengineTTSParams = {

6+

type VolcengineTTSParams = {

77

text: string;

88

apiKey?: string;

99

appId?: string;