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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
量子位
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
U
Unit 42
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
博客园 - Franky
博客园 - 聂微东

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: honor Ollama Modelfile num_ctx discovery · openclaw/...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -3,6 +3,7 @@ import { jsonResponse, requestBodyText, requestUrl } from "../../../src/test-hel

33

import {

44

buildOllamaModelDefinition,

55

enrichOllamaModelsWithContext,

6+

parseOllamaNumCtxParameter,

67

resetOllamaModelShowInfoCacheForTest,

78

resolveOllamaApiBase,

89

type OllamaTagModel,

@@ -42,6 +43,58 @@ describe("ollama provider models", () => {

4243

]);

4344

});

444546+

it("uses Modelfile num_ctx when it expands the discovered context window", async () => {

47+

const models: OllamaTagModel[] = [{ name: "llama3-32k:latest" }];

48+

const fetchMock = vi.fn(async () =>

49+

jsonResponse({

50+

model_info: { "llama.context_length": 8192 },

51+

parameters: 'stop "<|eot_id|>"\nnum_ctx 32768\nnum_keep 5',

52+

capabilities: ["completion"],

53+

}),

54+

);

55+

vi.stubGlobal("fetch", fetchMock);

56+57+

const enriched = await enrichOllamaModelsWithContext("http://127.0.0.1:11434", models);

58+59+

expect(enriched).toEqual([

60+

{

61+

name: "llama3-32k:latest",

62+

contextWindow: 32768,

63+

capabilities: ["completion"],

64+

},

65+

]);

66+

});

67+68+

it("keeps the larger native context window when Modelfile num_ctx is smaller", async () => {

69+

const models: OllamaTagModel[] = [{ name: "llama3.2:latest" }];

70+

const fetchMock = vi.fn(async () =>

71+

jsonResponse({

72+

model_info: { "llama.context_length": 131072 },

73+

parameters: "num_ctx 4096",

74+

}),

75+

);

76+

vi.stubGlobal("fetch", fetchMock);

77+78+

const enriched = await enrichOllamaModelsWithContext("http://127.0.0.1:11434", models);

79+80+

expect(enriched[0]?.contextWindow).toBe(131072);

81+

});

82+83+

it("uses positive num_ctx when /api/show omits model context metadata", async () => {

84+

const models: OllamaTagModel[] = [{ name: "custom-model:latest" }];

85+

const fetchMock = vi.fn(async () =>

86+

jsonResponse({

87+

model_info: {},

88+

parameters: "num_ctx 16384",

89+

}),

90+

);

91+

vi.stubGlobal("fetch", fetchMock);

92+93+

const enriched = await enrichOllamaModelsWithContext("http://127.0.0.1:11434", models);

94+95+

expect(enriched[0]?.contextWindow).toBe(16384);

96+

});

97+4598

it("sets models with vision capability from /api/show capabilities", async () => {

4699

const models: OllamaTagModel[] = [{ name: "kimi-k2.5:cloud" }, { name: "glm-5.1:cloud" }];

47100

const fetchMock = vi.fn(async (input: string | URL | Request, init?: RequestInit) => {

@@ -225,4 +278,11 @@ describe("ollama provider models", () => {

225278

expect(model.reasoning).toBe(false);

226279

expect(model.compat?.supportsTools).toBe(false);

227280

});

281+282+

it("parses the last positive Modelfile num_ctx value", () => {

283+

expect(parseOllamaNumCtxParameter("num_ctx 8192\nnum_ctx 32768")).toBe(32768);

284+

expect(parseOllamaNumCtxParameter("temperature 0.8\nnum_ctx -1\nnum_ctx 0")).toBeUndefined();

285+

expect(parseOllamaNumCtxParameter('stop "<|eot_id|>"')).toBeUndefined();

286+

expect(parseOllamaNumCtxParameter({ num_ctx: 8192 })).toBeUndefined();

287+

});

228288

});