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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
小众软件
小众软件
V
V2EX
博客园 - Franky
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
量子位
博客园 - 【当耐特】
雷峰网
雷峰网
WordPress大学
WordPress大学
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security 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(ollama): forward native model params · openclaw/openc...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -152,7 +152,31 @@ export function wrapOllamaCompatNumCtx(baseFn: StreamFn | undefined, numCtx: num

152152

});

153153

}

154154155-

type OllamaThinkValue = boolean | "low" | "medium" | "high";

155+

type OllamaThinkValue = boolean | "low" | "medium" | "high" | "max";

156+157+

const OLLAMA_OPTION_PARAM_KEYS = new Set([

158+

"num_keep",

159+

"seed",

160+

"num_predict",

161+

"top_k",

162+

"top_p",

163+

"min_p",

164+

"typical_p",

165+

"repeat_last_n",

166+

"temperature",

167+

"repeat_penalty",

168+

"presence_penalty",

169+

"frequency_penalty",

170+

"stop",

171+

"num_ctx",

172+

"num_batch",

173+

"num_gpu",

174+

"main_gpu",

175+

"use_mmap",

176+

"num_thread",

177+

]);

178+179+

const OLLAMA_TOP_LEVEL_PARAM_KEYS = new Set(["format", "keep_alive", "truncate", "shift"]);

156180157181

function createOllamaThinkingWrapper(

158182

baseFn: StreamFn | undefined,

@@ -181,6 +205,22 @@ function resolveOllamaThinkValue(thinkingLevel: unknown): OllamaThinkValue | und

181205

return undefined;

182206

}

183207208+

function resolveOllamaThinkParamValue(

209+

params: Record<string, unknown> | undefined,

210+

): OllamaThinkValue | undefined {

211+

const raw = params?.think ?? params?.thinking;

212+

if (typeof raw === "boolean") {

213+

return raw;

214+

}

215+

if (raw === "off") {

216+

return false;

217+

}

218+

if (raw === "low" || raw === "medium" || raw === "high" || raw === "max") {

219+

return raw;

220+

}

221+

return undefined;

222+

}

223+184224

function resolveOllamaConfiguredNumCtx(model: ProviderRuntimeModel): number | undefined {

185225

const raw = model.params?.num_ctx;

186226

if (typeof raw !== "number" || !Number.isFinite(raw) || raw <= 0) {

@@ -196,6 +236,39 @@ function resolveOllamaNumCtx(model: ProviderRuntimeModel): number {

196236

);

197237

}

198238239+

function resolveOllamaModelOptions(model: ProviderRuntimeModel): Record<string, unknown> {

240+

const options: Record<string, unknown> = {};

241+

const params = model.params;

242+

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

243+

for (const [key, value] of Object.entries(params)) {

244+

if (value !== undefined && OLLAMA_OPTION_PARAM_KEYS.has(key)) {

245+

options[key] = value;

246+

}

247+

}

248+

}

249+

options.num_ctx = resolveOllamaNumCtx(model);

250+

return options;

251+

}

252+253+

function resolveOllamaTopLevelParams(

254+

model: ProviderRuntimeModel,

255+

): Record<string, unknown> | undefined {

256+

const requestParams: Record<string, unknown> = {};

257+

const params = model.params;

258+

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

259+

for (const [key, value] of Object.entries(params)) {

260+

if (value !== undefined && OLLAMA_TOP_LEVEL_PARAM_KEYS.has(key)) {

261+

requestParams[key] = value;

262+

}

263+

}

264+

}

265+

const think = resolveOllamaThinkParamValue(params);

266+

if (think !== undefined) {

267+

requestParams.think = think;

268+

}

269+

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

270+

}

271+199272

function isOllamaCloudKimiModelRef(modelId: string): boolean {

200273

const normalizedModelId = normalizeLowercaseStringOrEmpty(modelId);

201274

return normalizedModelId.startsWith("kimi-k") && normalizedModelId.includes(":cloud");

@@ -257,6 +330,7 @@ export function buildOllamaChatRequest(params: {

257330

messages: OllamaChatMessage[];

258331

tools?: OllamaTool[];

259332

options?: Record<string, unknown>;

333+

requestParams?: Record<string, unknown>;

260334

stream?: boolean;

261335

}): OllamaChatRequest {

262336

return {

@@ -265,6 +339,7 @@ export function buildOllamaChatRequest(params: {

265339

stream: params.stream ?? true,

266340

...(params.tools && params.tools.length > 0 ? { tools: params.tools } : {}),

267341

...(params.options ? { options: params.options } : {}),

342+

...params.requestParams,

268343

};

269344

}

270345

@@ -754,7 +829,7 @@ export function createOllamaStreamFn(

754829

);

755830

const ollamaTools = extractOllamaTools(context.tools);

756831757-

const ollamaOptions: Record<string, unknown> = { num_ctx: resolveOllamaNumCtx(model) };

832+

const ollamaOptions: Record<string, unknown> = resolveOllamaModelOptions(model);

758833

if (typeof options?.temperature === "number") {

759834

ollamaOptions.temperature = options.temperature;

760835

}

@@ -769,6 +844,7 @@ export function createOllamaStreamFn(

769844

stream: true,

770845

tools: ollamaTools,

771846

options: ollamaOptions,

847+

requestParams: resolveOllamaTopLevelParams(model),

772848

});

773849

options?.onPayload?.(body, model);

774850

const headers: Record<string, string> = {