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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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): restore catalog-driven num_ctx for native /a...
openperf · 2026-05-03 · via Recent Commits to openclaw:main

@@ -85,6 +85,121 @@ describe("resolveLlmIdleTimeoutMs", () => {

8585

const cfg = { agents: { defaults: { timeoutSeconds: 300 } } } as OpenClawConfig;

8686

expect(resolveLlmIdleTimeoutMs({ cfg, trigger: "cron" })).toBe(DEFAULT_LLM_IDLE_TIMEOUT_MS);

8787

});

88+89+

it.each([

90+

"http://localhost:11434",

91+

"http://127.0.0.1:11434",

92+

"http://127.0.0.2:11434",

93+

"http://127.255.255.254:11434",

94+

"http://0.0.0.0:11434",

95+

"http://[::1]:11434",

96+

"http://my-rig.local:11434",

97+

"http://10.0.0.5:11434",

98+

"http://172.16.5.10:11434",

99+

"http://172.31.99.1:11434",

100+

"http://192.168.1.20:11434",

101+

"http://100.64.0.5:11434",

102+

"http://100.127.255.254:11434",

103+

// RFC 4193 IPv6 unique local (Tailscale IPv6 mesh fd7a:115c:a1e0::/48

104+

// falls inside fc00::/7).

105+

"http://[fc00::1]:11434",

106+

"http://[fd00::1]:11434",

107+

"http://[fd7a:115c:a1e0::dead:beef]:11434",

108+

"http://[fdff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]:11434",

109+

// RFC 4291 IPv6 link-local.

110+

"http://[fe80::1]:11434",

111+

"http://[fe9a::1]:11434",

112+

"http://[feab:cd::1]:11434",

113+

"http://[febf::1]:11434",

114+

])("disables the default idle watchdog for local provider baseUrl %s", (baseUrl) => {

115+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl } })).toBe(0);

116+

});

117+118+

it.each([

119+

"http://172.32.0.1:11434",

120+

"http://192.169.1.1:11434",

121+

"http://100.63.255.254:11434",

122+

"http://100.128.0.1:11434",

123+

])("keeps the default idle watchdog for non-private IPv4 baseUrl %s", (baseUrl) => {

124+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl } })).toBe(DEFAULT_LLM_IDLE_TIMEOUT_MS);

125+

});

126+127+

// Node's URL parser normalizes every IPv4-mapped loopback form

128+

// (`::ffff:127.0.0.1`, `::ffff:7F00:1`, mixed case, …) to the canonical

129+

// `::ffff:7f00:1`. Exercise the user-facing input shapes here so the full

130+

// parse → lowercase → bracket-strip → exact-match chain is regression-tested

131+

// against future URL parser behavior, not just the canonical literal.

132+

it.each([

133+

"http://[::ffff:127.0.0.1]:11434",

134+

"http://[::ffff:7f00:1]:11434",

135+

"http://[::FFFF:127.0.0.1]:11434",

136+

])("disables the default idle watchdog for IPv4-mapped loopback baseUrl %s", (baseUrl) => {

137+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl } })).toBe(0);

138+

});

139+140+

it.each([

141+

// Just outside fc00::/7 (fe.. and 00fc::/16 are not unique-local).

142+

"http://[fec0::1]:11434",

143+

"http://[fbff::1]:11434",

144+

// Just outside fe80::/10 (fec0:: was deprecated site-local, fe7f:: not LL).

145+

"http://[fe7f::1]:11434",

146+

// Public IPv6.

147+

"http://[2001:db8::1]:11434",

148+

// Abbreviated `fc::1` expands to 00fc:0:0:...:1, first byte is 0x00, not

149+

// 0xfc — outside fc00::/7. Strict first-hextet match keeps this remote.

150+

"http://[fc::1]:11434",

151+

// IPv4-mapped IPv6 outside loopback (private RFC 1918 in mapped form is

152+

// intentionally not matched, mirroring the SSRF policy helper).

153+

"http://[::ffff:10.0.0.5]:11434",

154+

"http://[::ffff:192.168.1.20]:11434",

155+

])("keeps the default idle watchdog for non-private IPv6 baseUrl %s", (baseUrl) => {

156+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl } })).toBe(DEFAULT_LLM_IDLE_TIMEOUT_MS);

157+

});

158+159+

it.each([

160+

"http://10.0.0.5evil:11434",

161+

"http://127.0.0.1foo:11434",

162+

"http://192.168.1.20attacker.com:11434",

163+

"http://10.0.0.5.evil.com:11434",

164+

"http://1.2.3.4.5:11434",

165+

])(

166+

"keeps the default idle watchdog for numeric-looking hostnames that are not IPv4 literals (%s)",

167+

(baseUrl) => {

168+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl } })).toBe(DEFAULT_LLM_IDLE_TIMEOUT_MS);

169+

},

170+

);

171+172+

it("keeps the default idle watchdog for remote provider baseUrls", () => {

173+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl: "https://api.openai.com/v1" } })).toBe(

174+

DEFAULT_LLM_IDLE_TIMEOUT_MS,

175+

);

176+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl: "https://ollama.com" } })).toBe(

177+

DEFAULT_LLM_IDLE_TIMEOUT_MS,

178+

);

179+

});

180+181+

it("ignores malformed baseUrl and keeps the default idle watchdog", () => {

182+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl: "not-a-url" } })).toBe(

183+

DEFAULT_LLM_IDLE_TIMEOUT_MS,

184+

);

185+

expect(resolveLlmIdleTimeoutMs({ model: { baseUrl: "" } })).toBe(DEFAULT_LLM_IDLE_TIMEOUT_MS);

186+

});

187+188+

it("still honors an explicit provider request timeout for local providers", () => {

189+

expect(

190+

resolveLlmIdleTimeoutMs({

191+

model: { baseUrl: "http://127.0.0.1:11434" },

192+

modelRequestTimeoutMs: 600_000,

193+

}),

194+

).toBe(600_000);

195+

});

196+197+

it("still applies agents.defaults.timeoutSeconds cap for local providers", () => {

198+

const cfg = { agents: { defaults: { timeoutSeconds: 30 } } } as OpenClawConfig;

199+

expect(resolveLlmIdleTimeoutMs({ cfg, model: { baseUrl: "http://127.0.0.1:11434" } })).toBe(

200+

30_000,

201+

);

202+

});

88203

});

8920490205

describe("streamWithIdleTimeout", () => {