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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
I
InfoQ
小众软件
小众软件
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
美团技术团队
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
V
V2EX
J
Java Code Geeks
有赞技术团队
有赞技术团队
博客园 - 聂微东
B
Blog RSS Feed
博客园 - 司徒正美

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
feat(wizard): localize onboarding flows · openclaw/opencl...
GaosCode · 2026-05-15 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import { ensureApiKeyFromEnvOrPrompt } from "../plugins/provider-auth-input.js";

55

import type { RuntimeEnv } from "../runtime.js";

66

import { fetchWithTimeout } from "../utils/fetch-timeout.js";

77

import { normalizeSecretInput } from "../utils/normalize-secret-input.js";

8+

import { t } from "../wizard/i18n/index.js";

89

import type { WizardPrompter } from "../wizard/prompts.js";

910

import {

1011

applyCustomApiConfig,

@@ -45,23 +46,23 @@ type CustomApiCompatibilityChoice = CustomApiCompatibility | "unknown";

45464647

const COMPATIBILITY_OPTIONS: Array<{

4748

value: CustomApiCompatibilityChoice;

48-

label: string;

49-

hint: string;

49+

labelKey: string;

50+

hintKey: string;

5051

}> = [

5152

{

5253

value: "openai",

53-

label: "OpenAI-compatible",

54-

hint: "Uses /chat/completions",

54+

labelKey: "wizard.customProvider.compatibilityOpenAi",

55+

hintKey: "wizard.customProvider.compatibilityOpenAiHint",

5556

},

5657

{

5758

value: "anthropic",

58-

label: "Anthropic-compatible",

59-

hint: "Uses /messages",

59+

labelKey: "wizard.customProvider.compatibilityAnthropic",

60+

hintKey: "wizard.customProvider.compatibilityAnthropicHint",

6061

},

6162

{

6263

value: "unknown",

63-

label: "Unknown (detect automatically)",

64-

hint: "Probes OpenAI then Anthropic endpoints",

64+

labelKey: "wizard.customProvider.compatibilityUnknown",

65+

hintKey: "wizard.customProvider.compatibilityUnknownHint",

6566

},

6667

];

6768

@@ -135,11 +136,11 @@ async function promptBaseUrlAndKey(params: {

135136

initialBaseUrl?: string;

136137

}): Promise<{ baseUrl: string; apiKey?: SecretInput; resolvedApiKey: string }> {

137138

const baseUrlInput = await params.prompter.text({

138-

message: "API Base URL",

139+

message: t("wizard.customProvider.apiBaseUrl"),

139140

initialValue: params.initialBaseUrl,

140141

placeholder: "https://api.example.com/v1",

141142

validate: (val) => {

142-

return URL.canParse(val) ? undefined : "Please enter a valid URL (e.g. http://...)";

143+

return URL.canParse(val) ? undefined : t("wizard.customProvider.validUrl");

143144

},

144145

});

145146

const baseUrl = baseUrlInput.trim();

@@ -149,7 +150,7 @@ async function promptBaseUrlAndKey(params: {

149150

config: params.config,

150151

provider: providerHint,

151152

envLabel: "CUSTOM_API_KEY",

152-

promptMessage: "API Key (leave blank if not required)",

153+

promptMessage: t("wizard.customProvider.apiKeyPrompt"),

153154

normalize: normalizeSecretInput,

154155

validate: () => undefined,

155156

prompter: params.prompter,

@@ -169,21 +170,21 @@ type CustomApiRetryChoice = "baseUrl" | "model" | "both";

169170170171

async function promptCustomApiRetryChoice(prompter: WizardPrompter): Promise<CustomApiRetryChoice> {

171172

return await prompter.select({

172-

message: "What would you like to change?",

173+

message: t("wizard.customProvider.retryChoice"),

173174

options: [

174-

{ value: "baseUrl", label: "Change base URL" },

175-

{ value: "model", label: "Change model" },

176-

{ value: "both", label: "Change base URL and model" },

175+

{ value: "baseUrl", label: t("wizard.customProvider.changeBaseUrl") },

176+

{ value: "model", label: t("wizard.customProvider.changeModel") },

177+

{ value: "both", label: t("wizard.customProvider.changeBaseUrlAndModel") },

177178

],

178179

});

179180

}

180181181182

async function promptCustomApiModelId(prompter: WizardPrompter): Promise<string> {

182183

return (

183184

await prompter.text({

184-

message: "Model ID",

185-

placeholder: "e.g. llama3, claude-3-7-sonnet",

186-

validate: (val) => (val.trim() ? undefined : "Model ID is required"),

185+

message: t("wizard.customProvider.modelId"),

186+

placeholder: t("wizard.customProvider.modelIdPlaceholder"),

187+

validate: (val) => (val.trim() ? undefined : t("wizard.customProvider.modelIdRequired")),

187188

})

188189

).trim();

189190

}

@@ -231,11 +232,11 @@ export async function promptCustomApiConfig(params: {

231232

let resolvedApiKey = baseInput.resolvedApiKey;

232233233234

const compatibilityChoice = await prompter.select({

234-

message: "Endpoint compatibility",

235+

message: t("wizard.customProvider.compatibility"),

235236

options: COMPATIBILITY_OPTIONS.map((option) => ({

236237

value: option.value,

237-

label: option.label,

238-

hint: option.hint,

238+

label: t(option.labelKey),

239+

hint: t(option.hintKey),

239240

})),

240241

});

241242

@@ -247,14 +248,14 @@ export async function promptCustomApiConfig(params: {

247248

while (true) {

248249

let verifiedFromProbe = false;

249250

if (!compatibility) {

250-

const probeSpinner = prompter.progress("Detecting endpoint type...");

251+

const probeSpinner = prompter.progress(t("wizard.customProvider.detectionProgress"));

251252

const openaiProbe = await requestOpenAiVerification({

252253

baseUrl,

253254

apiKey: resolvedApiKey,

254255

modelId,

255256

});

256257

if (openaiProbe.ok) {

257-

probeSpinner.stop("Detected OpenAI-compatible endpoint.");

258+

probeSpinner.stop(t("wizard.customProvider.detectedOpenAi"));

258259

compatibility = "openai";

259260

verifiedFromProbe = true;

260261

} else {

@@ -264,14 +265,14 @@ export async function promptCustomApiConfig(params: {

264265

modelId,

265266

});

266267

if (anthropicProbe.ok) {

267-

probeSpinner.stop("Detected Anthropic-compatible endpoint.");

268+

probeSpinner.stop(t("wizard.customProvider.detectedAnthropic"));

268269

compatibility = "anthropic";

269270

verifiedFromProbe = true;

270271

} else {

271-

probeSpinner.stop("Could not detect endpoint type.");

272+

probeSpinner.stop(t("wizard.customProvider.detectionFailed"));

272273

await prompter.note(

273-

"This endpoint did not respond to OpenAI or Anthropic style requests.",

274-

"Endpoint detection",

274+

t("wizard.customProvider.detectionFailedNote"),

275+

t("wizard.customProvider.detectionNoteTitle"),

275276

);

276277

const retryChoice = await promptCustomApiRetryChoice(prompter);

277278

({ baseUrl, apiKey, resolvedApiKey, modelId } = await applyCustomApiRetryChoice({

@@ -290,19 +291,25 @@ export async function promptCustomApiConfig(params: {

290291

break;

291292

}

292293293-

const verifySpinner = prompter.progress("Verifying...");

294+

const verifySpinner = prompter.progress(t("wizard.customProvider.verifying"));

294295

const result =

295296

compatibility === "anthropic"

296297

? await requestAnthropicVerification({ baseUrl, apiKey: resolvedApiKey, modelId })

297298

: await requestOpenAiVerification({ baseUrl, apiKey: resolvedApiKey, modelId });

298299

if (result.ok) {

299-

verifySpinner.stop("Verification successful.");

300+

verifySpinner.stop(t("wizard.customProvider.verificationSuccessful"));

300301

break;

301302

}

302303

if (result.status !== undefined) {

303-

verifySpinner.stop(`Verification failed: status ${result.status}`);

304+

verifySpinner.stop(

305+

t("wizard.customProvider.verificationFailedStatus", { status: result.status }),

306+

);

304307

} else {

305-

verifySpinner.stop(`Verification failed: ${formatVerificationError(result.error)}`);

308+

verifySpinner.stop(

309+

t("wizard.customProvider.verificationFailedError", {

310+

error: formatVerificationError(result.error),

311+

}),

312+

);

306313

}

307314

const retryChoice = await promptCustomApiRetryChoice(prompter);

308315

({ baseUrl, apiKey, resolvedApiKey, modelId } = await applyCustomApiRetryChoice({

@@ -319,20 +326,20 @@ export async function promptCustomApiConfig(params: {

319326320327

const suggestedId = buildEndpointIdFromUrl(baseUrl);

321328

const providerIdInput = await prompter.text({

322-

message: "Endpoint ID",

329+

message: t("wizard.customProvider.endpointId"),

323330

initialValue: suggestedId,

324331

placeholder: "custom",

325332

validate: (value) => {

326333

const normalized = normalizeEndpointId(value);

327334

if (!normalized) {

328-

return "Endpoint ID is required.";

335+

return t("wizard.customProvider.endpointIdRequired");

329336

}

330337

return undefined;

331338

},

332339

});

333340

const aliasInput = await prompter.text({

334-

message: "Model alias (optional)",

335-

placeholder: "e.g. local, ollama",

341+

message: t("wizard.customProvider.modelAlias"),

342+

placeholder: t("wizard.customProvider.modelAliasPlaceholder"),

336343

initialValue: "",

337344

validate: (value) => {

338345

const resolvedProvider = resolveCustomProviderId({

@@ -349,7 +356,7 @@ export async function promptCustomApiConfig(params: {

349356

imageInputInference.confidence === "known"

350357

? imageInputInference.supportsImageInput

351358

: await prompter.confirm({

352-

message: "Does this model support image input?",

359+

message: t("wizard.customProvider.imageInput"),

353360

initialValue: imageInputInference.supportsImageInput,

354361

});

355362

const resolvedCompatibility = compatibility ?? "openai";

@@ -366,8 +373,11 @@ export async function promptCustomApiConfig(params: {

366373367374

if (result.providerIdRenamedFrom && result.providerId) {

368375

await prompter.note(

369-

`Endpoint ID "${result.providerIdRenamedFrom}" already exists for a different base URL. Using "${result.providerId}".`,

370-

"Endpoint ID",

376+

t("wizard.customProvider.endpointIdRenamed", {

377+

from: result.providerIdRenamedFrom,

378+

to: result.providerId,

379+

}),

380+

t("wizard.customProvider.endpointIdTitle"),

371381

);

372382

}

373383