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

推荐订阅源

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
refactor: remove stale provider helpers · openclaw/opencl...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -34,10 +34,6 @@ const arceeOpenRouterPresetAppliers = createModelCatalogPresetAppliers({

3434

}),

3535

});

3636
37-

export function applyArceeProviderConfig(cfg: OpenClawConfig): OpenClawConfig {

38-

return arceePresetAppliers.applyProviderConfig(cfg);

39-

}

40-
4137

export function applyArceeConfig(cfg: OpenClawConfig): OpenClawConfig {

4238

return arceePresetAppliers.applyConfig(cfg);

4339

}

Original file line numberDiff line numberDiff line change

@@ -19,10 +19,6 @@ export function normalizeArceeOpenRouterBaseUrl(baseUrl: string | undefined): st

1919

return undefined;

2020

}

2121
22-

export function isArceeOpenRouterBaseUrl(baseUrl: string | undefined): boolean {

23-

return normalizeArceeOpenRouterBaseUrl(baseUrl) === OPENROUTER_BASE_URL;

24-

}

25-
2622

export function toArceeOpenRouterModelId(modelId: string): string {

2723

const normalized = modelId.trim();

2824

if (!normalized || normalized.startsWith("arcee/")) {

Original file line numberDiff line numberDiff line change

@@ -15,8 +15,6 @@ const BYTEPLUS_CODING_MANIFEST_PROVIDER = buildManifestModelProviderConfig({

1515

export const BYTEPLUS_BASE_URL = BYTEPLUS_MANIFEST_PROVIDER.baseUrl;

1616

export const BYTEPLUS_CODING_BASE_URL = BYTEPLUS_CODING_MANIFEST_PROVIDER.baseUrl;

1717

export const BYTEPLUS_DEFAULT_MODEL_ID = "seed-1-8-251228";

18-

export const BYTEPLUS_CODING_DEFAULT_MODEL_ID = "ark-code-latest";

19-

export const BYTEPLUS_DEFAULT_MODEL_REF = `byteplus/${BYTEPLUS_DEFAULT_MODEL_ID}`;

2018
2119

export const BYTEPLUS_DEFAULT_COST = {

2220

input: 0.0001,

Original file line numberDiff line numberDiff line change

@@ -21,10 +21,6 @@ const cerebrasPresetAppliers = createModelCatalogPresetAppliers({

2121

}),

2222

});

2323
24-

export function applyCerebrasProviderConfig(cfg: OpenClawConfig): OpenClawConfig {

25-

return cerebrasPresetAppliers.applyProviderConfig(cfg);

26-

}

27-
2824

export function applyCerebrasConfig(cfg: OpenClawConfig): OpenClawConfig {

2925

return cerebrasPresetAppliers.applyConfig(cfg);

3026

}

Original file line numberDiff line numberDiff line change

@@ -1,18 +1,11 @@

11

import {

22

GPT5_BEHAVIOR_CONTRACT,

3-

GPT5_FRIENDLY_PROMPT_OVERLAY,

4-

isGpt5ModelId,

53

renderGpt5PromptOverlay,

64

resolveGpt5SystemPromptContribution,

75

} from "openclaw/plugin-sdk/provider-model-shared";

86
9-

export const CODEX_FRIENDLY_PROMPT_OVERLAY = GPT5_FRIENDLY_PROMPT_OVERLAY;

107

export const CODEX_GPT5_BEHAVIOR_CONTRACT = GPT5_BEHAVIOR_CONTRACT;

118
12-

export function shouldApplyCodexPromptOverlay(params: { modelId?: string }): boolean {

13-

return isGpt5ModelId(params.modelId);

14-

}

15-
169

export function resolveCodexSystemPromptContribution(

1710

params: Parameters<typeof resolveGpt5SystemPromptContribution>[0],

1811

) {

Original file line numberDiff line numberDiff line change

@@ -25,10 +25,6 @@ const fireworksPresetAppliers = createDefaultModelsPresetAppliers({

2525

},

2626

});

2727
28-

export function applyFireworksProviderConfig(cfg: OpenClawConfig): OpenClawConfig {

29-

return fireworksPresetAppliers.applyProviderConfig(cfg);

30-

}

31-
3228

export function applyFireworksConfig(cfg: OpenClawConfig): OpenClawConfig {

3329

return fireworksPresetAppliers.applyConfig(cfg);

3430

}

Original file line numberDiff line numberDiff line change

@@ -21,10 +21,6 @@ const huggingfacePresetAppliers = createModelCatalogPresetAppliers({

2121

}),

2222

});

2323
24-

export function applyHuggingfaceProviderConfig(cfg: OpenClawConfig): OpenClawConfig {

25-

return huggingfacePresetAppliers.applyProviderConfig(cfg);

26-

}

27-
2824

export function applyHuggingfaceConfig(cfg: OpenClawConfig): OpenClawConfig {

2925

return huggingfacePresetAppliers.applyConfig(cfg);

3026

}

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,6 @@ import type { ModelProviderConfig } from "openclaw/plugin-sdk/provider-model-sha

33

export const KIMI_BASE_URL = "https://api.kimi.com/coding/";

44

const KIMI_CODING_USER_AGENT = "claude-code/0.1.0";

55

export const KIMI_DEFAULT_MODEL_ID = "kimi-code";

6-

export const KIMI_UPSTREAM_MODEL_ID = "kimi-for-coding";

76

export const KIMI_LEGACY_MODEL_ID = "k2p5";

87

const KIMI_CODING_DEFAULT_CONTEXT_WINDOW = 262144;

98

const KIMI_CODING_DEFAULT_MAX_TOKENS = 32768;

@@ -46,5 +45,3 @@ export function buildKimiCodingProvider(): ModelProviderConfig {

4645
4746

export const KIMI_CODING_BASE_URL = KIMI_BASE_URL;

4847

export const KIMI_CODING_DEFAULT_MODEL_ID = KIMI_DEFAULT_MODEL_ID;

49-

export const KIMI_CODING_LEGACY_MODEL_ID = KIMI_LEGACY_MODEL_ID;

50-

export const buildKimiProvider = buildKimiCodingProvider;

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,6 @@ const MISTRAL_MANIFEST_CATALOG = manifest.modelCatalog.providers.mistral;

66
77

export const MISTRAL_BASE_URL = MISTRAL_MANIFEST_CATALOG.baseUrl;

88

export const MISTRAL_DEFAULT_MODEL_ID = "mistral-large-latest";

9-

export const MISTRAL_DEFAULT_MODEL_REF = `mistral/${MISTRAL_DEFAULT_MODEL_ID}`;

109
1110

function requireMistralManifestModel(id: string): (typeof MISTRAL_MANIFEST_CATALOG.models)[number] {

1211

const model = MISTRAL_MANIFEST_CATALOG.models.find((entry) => entry.id === id);

Original file line numberDiff line numberDiff line change

@@ -29,14 +29,6 @@ const moonshotPresetAppliers = createDefaultModelPresetAppliers<[string]>({

2929

},

3030

});

3131
32-

export function applyMoonshotProviderConfig(cfg: OpenClawConfig): OpenClawConfig {

33-

return moonshotPresetAppliers.applyProviderConfig(cfg, MOONSHOT_BASE_URL);

34-

}

35-
36-

export function applyMoonshotProviderConfigCn(cfg: OpenClawConfig): OpenClawConfig {

37-

return moonshotPresetAppliers.applyProviderConfig(cfg, MOONSHOT_CN_BASE_URL);

38-

}

39-
4032

export function applyMoonshotConfig(cfg: OpenClawConfig): OpenClawConfig {

4133

return moonshotPresetAppliers.applyConfig(cfg, MOONSHOT_BASE_URL);

4234

}