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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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 native num_ctx migration (#81928) · openclaw/o...
joshavant · 2026-05-15 · via Recent Commits to openclaw:main

@@ -126,6 +126,17 @@ describe("normalizeCompatibilityConfigValues", () => {

126126

expect(res.changes).toStrictEqual([]);

127127

};

128128129+

const ollamaModel = (overrides: Record<string, unknown> = {}) => ({

130+

id: "llama3.3",

131+

name: "Llama 3.3",

132+

reasoning: false,

133+

input: ["text"] as Array<"text">,

134+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

135+

contextWindow: 81920,

136+

maxTokens: 8192,

137+

...overrides,

138+

});

139+129140

beforeAll(() => {

130141

previousOauthDir = process.env.OPENCLAW_OAUTH_DIR;

131142

tempOauthDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-oauth-"));

@@ -1229,6 +1240,214 @@ describe("normalizeCompatibilityConfigValues", () => {

12291240

]);

12301241

});

123112421243+

it("sets native Ollama params.num_ctx from explicit model contextWindow budgets", () => {

1244+

const res = normalizeCompatibilityConfigValues({

1245+

models: {

1246+

providers: {

1247+

ollama: {

1248+

baseUrl: "http://localhost:11434",

1249+

api: "ollama",

1250+

models: [

1251+

ollamaModel({

1252+

params: {

1253+

temperature: 0.2,

1254+

},

1255+

}),

1256+

ollamaModel({

1257+

id: "llama3.3-small",

1258+

contextWindow: 32768,

1259+

maxTokens: 4096,

1260+

params: {

1261+

num_ctx: 16384,

1262+

},

1263+

}),

1264+

],

1265+

},

1266+

},

1267+

},

1268+

});

1269+1270+

expect(res.config.models?.providers?.ollama?.models?.map((model) => model.params)).toEqual([

1271+

{ temperature: 0.2, num_ctx: 81920 },

1272+

{ num_ctx: 16384 },

1273+

]);

1274+

expect(res.changes).toEqual([

1275+

"Set models.providers.ollama.models[0].params.num_ctx to 81920 for native Ollama compatibility.",

1276+

]);

1277+

});

1278+1279+

it("sets native Ollama params.num_ctx from custom provider maxTokens budgets", () => {

1280+

const res = normalizeCompatibilityConfigValues({

1281+

models: {

1282+

providers: {

1283+

localOllama: {

1284+

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

1285+

api: "ollama",

1286+

models: [

1287+

ollamaModel({

1288+

contextWindow: 0,

1289+

maxTokens: 24576,

1290+

}),

1291+

],

1292+

},

1293+

},

1294+

},

1295+

});

1296+1297+

expect(res.config.models?.providers?.localOllama?.models?.[0]?.params).toEqual({

1298+

num_ctx: 24576,

1299+

});

1300+

expect(res.changes).toEqual([

1301+

"Set models.providers.localOllama.models[0].params.num_ctx to 24576 for native Ollama compatibility.",

1302+

]);

1303+

});

1304+1305+

it("prefers provider contextWindow over model maxTokens for native Ollama params.num_ctx", () => {

1306+

const modelWithoutContextWindow = ollamaModel({

1307+

contextWindow: undefined,

1308+

maxTokens: 4096,

1309+

});

1310+

const res = normalizeCompatibilityConfigValues({

1311+

models: {

1312+

providers: {

1313+

ollama: {

1314+

baseUrl: "http://localhost:11434",

1315+

api: "ollama",

1316+

contextWindow: 65536,

1317+

models: [modelWithoutContextWindow],

1318+

},

1319+

},

1320+

},

1321+

});

1322+1323+

expect(res.config.models?.providers?.ollama?.models?.[0]?.params).toBeUndefined();

1324+

expect(res.config.models?.providers?.ollama?.params).toEqual({

1325+

num_ctx: 65536,

1326+

});

1327+

expect(res.changes).toEqual([

1328+

"Set models.providers.ollama.params.num_ctx to 65536 for native Ollama compatibility.",

1329+

]);

1330+

});

1331+1332+

it("sets provider-level native Ollama params.num_ctx when auto-discovered models use provider budgets", () => {

1333+

const res = normalizeCompatibilityConfigValues({

1334+

models: {

1335+

providers: {

1336+

ollama: {

1337+

baseUrl: "http://localhost:11434",

1338+

api: "ollama",

1339+

contextWindow: 65536,

1340+

models: [],

1341+

},

1342+

},

1343+

},

1344+

});

1345+1346+

expect(res.config.models?.providers?.ollama?.params).toEqual({

1347+

num_ctx: 65536,

1348+

});

1349+

expect(res.changes).toEqual([

1350+

"Set models.providers.ollama.params.num_ctx to 65536 for native Ollama compatibility.",

1351+

]);

1352+

});

1353+1354+

it("sets provider-level native Ollama params.num_ctx when explicit model entries also exist", () => {

1355+

const res = normalizeCompatibilityConfigValues({

1356+

models: {

1357+

providers: {

1358+

ollama: {

1359+

baseUrl: "http://localhost:11434",

1360+

api: "ollama",

1361+

contextWindow: 65536,

1362+

models: [

1363+

ollamaModel({

1364+

contextWindow: 32768,

1365+

}),

1366+

],

1367+

},

1368+

},

1369+

},

1370+

});

1371+1372+

expect(res.config.models?.providers?.ollama?.params).toEqual({

1373+

num_ctx: 65536,

1374+

});

1375+

expect(res.config.models?.providers?.ollama?.models?.[0]?.params).toEqual({

1376+

num_ctx: 32768,

1377+

});

1378+

expect(res.changes).toEqual([

1379+

"Set models.providers.ollama.params.num_ctx to 65536 for native Ollama compatibility.",

1380+

"Set models.providers.ollama.models[0].params.num_ctx to 32768 for native Ollama compatibility.",

1381+

]);

1382+

});

1383+1384+

it("keeps existing provider-level native Ollama params.num_ctx ahead of inherited provider budgets", () => {

1385+

const res = normalizeCompatibilityConfigValues({

1386+

models: {

1387+

providers: {

1388+

ollama: {

1389+

baseUrl: "http://localhost:11434",

1390+

api: "ollama",

1391+

contextWindow: 65536,

1392+

params: {

1393+

num_ctx: 32768,

1394+

},

1395+

models: [

1396+

ollamaModel({

1397+

contextWindow: undefined,

1398+

maxTokens: undefined,

1399+

}),

1400+

],

1401+

},

1402+

},

1403+

},

1404+

});

1405+1406+

expect(res.config.models?.providers?.ollama?.params).toEqual({

1407+

num_ctx: 32768,

1408+

});

1409+

expect(res.config.models?.providers?.ollama?.models?.[0]?.params).toBeUndefined();

1410+

expect(res.changes).toEqual([]);

1411+

});

1412+1413+

it("does not set native Ollama params for OpenAI-compatible Ollama configs", () => {

1414+

const input = {

1415+

models: {

1416+

providers: {

1417+

ollama: {

1418+

baseUrl: "http://localhost:11434/v1",

1419+

api: "openai-completions" as const,

1420+

models: [ollamaModel()],

1421+

},

1422+

},

1423+

},

1424+

};

1425+1426+

const res = normalizeCompatibilityConfigValues(input);

1427+1428+

expect(res.config).toEqual(input);

1429+

expect(res.changes).toEqual([]);

1430+

});

1431+1432+

it("does not set native Ollama params for implicit OpenAI-compatible Ollama configs", () => {

1433+

const input = {

1434+

models: {

1435+

providers: {

1436+

ollama: {

1437+

baseUrl: "http://localhost:11434/v1",

1438+

contextWindow: 65536,

1439+

models: [ollamaModel()],

1440+

},

1441+

},

1442+

},

1443+

};

1444+1445+

const res = normalizeCompatibilityConfigValues(input);

1446+1447+

expect(res.config).toEqual(input);

1448+

expect(res.changes).toEqual([]);

1449+

});

1450+12321451

it("normalizes persisted mistral model maxTokens that matched the old context-sized defaults", () => {

12331452

const res = normalizeCompatibilityConfigValues({

12341453

models: {