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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
B
Blog RSS Feed
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
D
Docker
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
H
Help Net Security
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
博客园 - Franky
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
L
LangChain 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(lmstudio): allow keyless local onboarding · openclaw/...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import {

22

removeProviderAuthProfilesWithLock,

33

buildApiKeyCredential,

44

ensureApiKeyFromEnvOrPrompt,

5+

hasConfiguredSecretInput,

56

normalizeOptionalSecretInput,

67

type OpenClawConfig,

78

type SecretInput,

@@ -363,6 +364,7 @@ async function discoverLmstudioSetupModels(params: {

363364

/** Interactive LM Studio setup with connectivity and model-availability checks. */

364365

export async function promptAndConfigureLmstudioInteractive(params: {

365366

config: OpenClawConfig;

367+

agentDir?: string;

366368

prompter?: WizardPrompter;

367369

secretInputMode?: SecretInputMode;

368370

allowSecretRefPrompt?: boolean;

@@ -395,7 +397,7 @@ export async function promptAndConfigureLmstudioInteractive(params: {

395397

envLabel: LMSTUDIO_DEFAULT_API_KEY_ENV_VAR,

396398

promptMessage: `${LMSTUDIO_PROVIDER_LABEL} API key`,

397399

normalize: (value) => value.trim(),

398-

validate: (value) => (value.trim() ? undefined : "Required"),

400+

validate: () => undefined,

399401

prompter: params.prompter,

400402

secretInputMode:

401403

params.allowSecretRefPrompt === false

@@ -406,30 +408,38 @@ export async function promptAndConfigureLmstudioInteractive(params: {

406408

credentialMode = mode;

407409

},

408410

})

409-

: String(

410-

await promptText({

411+

: (

412+

(await promptText({

411413

message: `${LMSTUDIO_PROVIDER_LABEL} API key`,

412-

placeholder: "sk-...",

413-

validate: (value) => (value?.trim() ? undefined : "Required"),

414-

}),

414+

placeholder: "sk-... (leave blank if auth is disabled)",

415+

validate: () => undefined,

416+

})) ?? ""

415417

).trim();

416-

const credential = params.prompter

417-

? buildApiKeyCredential(

418-

PROVIDER_ID,

419-

credentialInput ??

420-

(implicitRefMode && autoRefEnvKey ? `\${${LMSTUDIO_DEFAULT_API_KEY_ENV_VAR}}` : apiKey),

421-

undefined,

422-

credentialMode

423-

? { secretInputMode: credentialMode }

424-

: implicitRefMode && autoRefEnvKey

425-

? { secretInputMode: "ref" }

426-

: undefined,

427-

)

428-

: {

429-

type: "api_key" as const,

430-

provider: PROVIDER_ID,

431-

key: apiKey,

432-

};

418+

const normalizedApiKey = normalizeOptionalSecretInput(apiKey);

419+

const credentialSource =

420+

credentialInput ??

421+

(implicitRefMode && autoRefEnvKey ? `\${${LMSTUDIO_DEFAULT_API_KEY_ENV_VAR}}` : apiKey);

422+

const shouldStoreCredential = params.prompter

423+

? credentialMode === "ref" || hasConfiguredSecretInput(credentialSource)

424+

: normalizedApiKey !== undefined;

425+

const credential = shouldStoreCredential

426+

? params.prompter

427+

? buildApiKeyCredential(

428+

PROVIDER_ID,

429+

credentialSource,

430+

undefined,

431+

credentialMode

432+

? { secretInputMode: credentialMode }

433+

: implicitRefMode && autoRefEnvKey

434+

? { secretInputMode: "ref" }

435+

: undefined,

436+

)

437+

: {

438+

type: "api_key" as const,

439+

provider: PROVIDER_ID,

440+

key: normalizedApiKey ?? apiKey,

441+

}

442+

: undefined;

433443

const existingProvider = params.config.models?.providers?.[PROVIDER_ID];

434444

// Auth setup updates auth/profile/provider model fields but does not mutate

435445

// user-provided header overrides. Runtime request assembly is the source of truth for auth.

@@ -439,9 +449,19 @@ export async function promptAndConfigureLmstudioInteractive(params: {

439449

env: process.env,

440450

headers: persistedHeaders,

441451

});

452+

const hasAuthorizationHeader = hasLmstudioAuthorizationHeader(resolvedHeaders);

453+

const setupDiscoveryApiKey =

454+

normalizedApiKey ??

455+

(shouldUseLmstudioApiKeyPlaceholder({

456+

hasModels: true,

457+

resolvedApiKey: undefined,

458+

hasAuthorizationHeader,

459+

})

460+

? LMSTUDIO_LOCAL_API_KEY_PLACEHOLDER

461+

: undefined);

442462

const setupDiscovery = await discoverLmstudioSetupModels({

443463

baseUrl,

444-

apiKey,

464+

apiKey: setupDiscoveryApiKey,

445465

...(resolvedHeaders ? { headers: resolvedHeaders } : {}),

446466

timeoutMs: 5000,

447467

});

@@ -475,21 +495,29 @@ export async function promptAndConfigureLmstudioInteractive(params: {

475495

const defaultModel = setupDiscovery.value.defaultModel;

476496

const persistedApiKey =

477497

resolvePersistedLmstudioApiKey({

478-

currentApiKey: existingProvider?.apiKey,

479-

explicitAuth: resolveLmstudioProviderAuthMode(apiKey),

480-

fallbackApiKey: LMSTUDIO_DEFAULT_API_KEY_ENV_VAR,

498+

currentApiKey: normalizedApiKey ? existingProvider?.apiKey : undefined,

499+

explicitAuth: resolveLmstudioProviderAuthMode(normalizedApiKey),

500+

fallbackApiKey: normalizedApiKey ? LMSTUDIO_DEFAULT_API_KEY_ENV_VAR : undefined,

481501

preferFallbackApiKey: true,

482502

hasModels: discoveredModels.length > 0,

483-

hasAuthorizationHeader: hasLmstudioAuthorizationHeader(resolvedHeaders),

484-

}) ?? LMSTUDIO_DEFAULT_API_KEY_ENV_VAR;

503+

hasAuthorizationHeader,

504+

}) ?? (normalizedApiKey ? LMSTUDIO_DEFAULT_API_KEY_ENV_VAR : undefined);

505+

if (!credential) {

506+

await removeProviderAuthProfilesWithLock({

507+

provider: PROVIDER_ID,

508+

agentDir: params.agentDir,

509+

});

510+

}

485511486512

return {

487-

profiles: [

488-

{

489-

profileId: `${PROVIDER_ID}:default`,

490-

credential,

491-

},

492-

],

513+

profiles: credential

514+

? [

515+

{

516+

profileId: `${PROVIDER_ID}:default`,

517+

credential,

518+

},

519+

]

520+

: [],

493521

configPatch: {

494522

agents: {

495523

defaults: {