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

推荐订阅源

美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
M
MIT News - Artificial intelligence
博客园 - 聂微东
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
C
Check Point Blog
云风的 BLOG
云风的 BLOG
腾讯CDC
H
Help Net Security
Y
Y Combinator Blog
I
InfoQ

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): honor configured num_ctx params · openclaw/o...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -94,6 +94,7 @@ describe("createConfiguredOllamaCompatStreamWrapper", () => {

9494

provider: "ollama",

9595

id: "kimi-k2.5:cloud",

9696

contextWindow: 262144,

97+

params: { num_ctx: 65536 },

9798

};

989999100

const wrapped = createConfiguredOllamaCompatStreamWrapper({

@@ -117,7 +118,43 @@ describe("createConfiguredOllamaCompatStreamWrapper", () => {

117118118119

expect(patchedPayload).toMatchObject({

119120

thinking: { type: "enabled" },

120-

options: { num_ctx: 262144 },

121+

options: { num_ctx: 65536 },

122+

});

123+

});

124+125+

it("falls back to contextWindow when configured num_ctx is invalid", async () => {

126+

let patchedPayload: Record<string, unknown> | undefined;

127+

const baseStreamFn = vi.fn((_model, _context, options) => {

128+

options?.onPayload?.({});

129+

return (async function* () {})();

130+

});

131+

const model = {

132+

api: "openai-completions",

133+

provider: "ollama",

134+

id: "qwen3:32b",

135+

contextWindow: 131072,

136+

params: { num_ctx: 0 },

137+

};

138+139+

const wrapped = createConfiguredOllamaCompatStreamWrapper({

140+

provider: "ollama",

141+

modelId: "qwen3:32b",

142+

model,

143+

streamFn: baseStreamFn,

144+

} as never);

145+146+

await wrapped?.(

147+

model as never,

148+

{ messages: [] } as never,

149+

{

150+

onPayload: (payload: unknown) => {

151+

patchedPayload = payload as Record<string, unknown>;

152+

},

153+

} as never,

154+

);

155+156+

expect(patchedPayload).toMatchObject({

157+

options: { num_ctx: 131072 },

121158

});

122159

});

123160

@@ -878,6 +915,7 @@ function getGuardedFetchCall(fetchMock: typeof fetchWithSsrFGuardMock): GuardedF

878915

async function createOllamaTestStream(params: {

879916

baseUrl: string;

880917

defaultHeaders?: Record<string, string>;

918+

model?: Record<string, unknown>;

881919

options?: {

882920

apiKey?: string;

883921

maxTokens?: number;

@@ -892,6 +930,7 @@ async function createOllamaTestStream(params: {

892930

api: "ollama",

893931

provider: "custom-ollama",

894932

contextWindow: 131072,

933+

...params.model,

895934

} as unknown as Parameters<typeof streamFn>[0],

896935

{

897936

messages: [{ role: "user", content: "hello" }],

@@ -1157,6 +1196,33 @@ describe("createOllamaStreamFn", () => {

11571196

);

11581197

});

115911981199+

it("uses configured params.num_ctx for native Ollama chat options", async () => {

1200+

await withMockNdjsonFetch(

1201+

[

1202+

'{"model":"m","created_at":"t","message":{"role":"assistant","content":"ok"},"done":false}',

1203+

'{"model":"m","created_at":"t","message":{"role":"assistant","content":""},"done":true,"prompt_eval_count":1,"eval_count":1}',

1204+

],

1205+

async (fetchMock) => {

1206+

const stream = await createOllamaTestStream({

1207+

baseUrl: "http://ollama-host:11434",

1208+

model: { params: { num_ctx: 32768 }, contextWindow: 131072 },

1209+

});

1210+1211+

const events = await collectStreamEvents(stream);

1212+

expect(events.at(-1)?.type).toBe("done");

1213+1214+

const requestInit = getGuardedFetchCall(fetchMock).init ?? {};

1215+

if (typeof requestInit.body !== "string") {

1216+

throw new Error("Expected string request body");

1217+

}

1218+

const requestBody = JSON.parse(requestInit.body) as {

1219+

options: { num_ctx?: number };

1220+

};

1221+

expect(requestBody.options.num_ctx).toBe(32768);

1222+

},

1223+

);

1224+

});

1225+11601226

it("uses the default loopback policy when baseUrl is empty", async () => {

11611227

await withMockNdjsonFetch(

11621228

[