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

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
B
Blog
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
V
V2EX

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
test: save ~79 CI hours/mo in gateway session utils (#956...
zats · 2026-06-22 · via Recent Commits to openclaw:main

@@ -1691,6 +1691,45 @@ describe("gateway session utils", () => {

16911691

});

1692169216931693

test("listAgentsForGateway reports per-agent thinking defaults from the agent model", () => {

1694+

const resolveDeepSeekThinkingProfile = vi.fn(() => ({

1695+

levels: [

1696+

{ id: "off" as const },

1697+

{ id: "minimal" as const },

1698+

{ id: "low" as const },

1699+

{ id: "medium" as const },

1700+

{ id: "high" as const },

1701+

{ id: "xhigh" as const },

1702+

],

1703+

defaultLevel: "medium" as const,

1704+

}));

1705+

const registry = createEmptyPluginRegistry();

1706+

registry.providers.push(

1707+

{

1708+

pluginId: "test-minimax",

1709+

source: "test",

1710+

provider: {

1711+

id: "minimax",

1712+

label: "MiniMax",

1713+

auth: [],

1714+

resolveThinkingProfile: () => ({

1715+

levels: [{ id: "off" }],

1716+

defaultLevel: "off",

1717+

}),

1718+

},

1719+

},

1720+

{

1721+

pluginId: "test-deepseek",

1722+

source: "test",

1723+

provider: {

1724+

id: "deepseek",

1725+

label: "DeepSeek",

1726+

auth: [],

1727+

resolveThinkingProfile: resolveDeepSeekThinkingProfile,

1728+

},

1729+

},

1730+

);

1731+

setActivePluginRegistry(registry);

1732+16941733

const cfg = {

16951734

session: { mainKey: "main" },

16961735

agents: {

@@ -1713,6 +1752,12 @@ describe("gateway session utils", () => {

17131752

const agent = result.agents.find((row) => row.id === "investment-master");

1714175317151754

expect(agent?.model).toEqual({ primary: "deepseek/deepseek-v4-flash" });

1755+

expect(resolveDeepSeekThinkingProfile).toHaveBeenCalledWith(

1756+

expect.objectContaining({

1757+

provider: "deepseek",

1758+

modelId: "deepseek-v4-flash",

1759+

}),

1760+

);

17161761

expect(agent?.thinkingDefault).toBe("xhigh");

17171762

expect(agent?.thinkingLevels?.map((level) => level.id)).toEqual(

17181763

expect.arrayContaining(["off", "minimal", "low", "medium", "high", "xhigh"]),