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

推荐订阅源

J
Java Code Geeks
IT之家
IT之家
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
V
V2EX
N
Netflix TechBlog - Medium
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Blog of Author Tim Ferriss
量子位
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
月光博客
月光博客
F
Fortinet All Blogs

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
refactor: move Feishu model override parsing to plugin · ...
steipete · 2026-04-22 · via Recent Commits to openclaw:main

@@ -1,6 +1,6 @@

11

import { beforeEach, describe, expect, it } from "vitest";

22

import type { OpenClawConfig } from "../config/config.js";

3-

import { resetPluginRuntimeStateForTest, setActivePluginRegistry } from "../plugins/runtime.js";

3+

import { setActivePluginRegistry } from "../plugins/runtime.js";

44

import { createTestRegistry } from "../test-utils/channel-plugins.js";

55

import { createSessionConversationTestRegistry } from "../test-utils/session-conversation-registry.js";

66

import { resolveChannelModelOverride } from "./model-overrides.js";

@@ -64,48 +64,6 @@ describe("resolveChannelModelOverride", () => {

6464

},

6565

expected: { model: "demo-provider/demo-parent-model", matchKey: "123" },

6666

},

67-

{

68-

name: "preserves feishu topic ids for direct matches",

69-

input: {

70-

cfg: {

71-

channels: {

72-

modelByChannel: {

73-

feishu: {

74-

"oc_group_chat:topic:om_topic_root": "demo-provider/demo-feishu-topic-model",

75-

},

76-

},

77-

},

78-

} as unknown as OpenClawConfig,

79-

channel: "feishu",

80-

groupId: "oc_group_chat:topic:om_topic_root",

81-

},

82-

expected: {

83-

model: "demo-provider/demo-feishu-topic-model",

84-

matchKey: "oc_group_chat:topic:om_topic_root",

85-

},

86-

},

87-

{

88-

name: "preserves feishu topic ids when falling back from parent session key",

89-

input: {

90-

cfg: {

91-

channels: {

92-

modelByChannel: {

93-

feishu: {

94-

"oc_group_chat:topic:om_topic_root": "demo-provider/demo-feishu-topic-model",

95-

},

96-

},

97-

},

98-

} as unknown as OpenClawConfig,

99-

channel: "feishu",

100-

groupId: "unrelated",

101-

parentSessionKey:

102-

"agent:main:feishu:group:oc_group_chat:topic:om_topic_root:sender:ou_topic_user",

103-

},

104-

expected: {

105-

model: "demo-provider/demo-feishu-topic-model",

106-

matchKey: "oc_group_chat:topic:om_topic_root",

107-

},

108-

},

10967

] as const)("$name", ({ input, expected }) => {

11068

const resolved = resolveChannelModelOverride(input);

11169

expect(resolved?.model).toBe(expected.model);

@@ -168,48 +126,58 @@ describe("resolveChannelModelOverride", () => {

168126

expect(resolved?.matchKey).toBe("thread-parent");

169127

});

170128171-

it("keeps bundled Feishu parent fallback matching before registry bootstrap", () => {

172-

resetPluginRuntimeStateForTest();

173-174-

const resolved = resolveChannelModelOverride({

175-

cfg: {

176-

channels: {

177-

modelByChannel: {

178-

feishu: {

179-

"oc_group_chat:topic:om_topic_root": "demo-provider/demo-feishu-topic-model",

129+

it("uses plugin-owned parent fallback candidates", () => {

130+

setActivePluginRegistry(

131+

createTestRegistry([

132+

{

133+

pluginId: "scoped-chat",

134+

source: "test",

135+

plugin: {

136+

id: "scoped-chat",

137+

meta: {

138+

id: "scoped-chat",

139+

label: "Scoped Chat",

140+

selectionLabel: "Scoped Chat",

141+

docsPath: "/channels/scoped-chat",

142+

blurb: "test stub.",

143+

},

144+

capabilities: { chatTypes: ["group"] },

145+

conversationBindings: {

146+

buildModelOverrideParentCandidates: ({

147+

parentConversationId,

148+

}: {

149+

parentConversationId?: string | null;

150+

}) =>

151+

parentConversationId === "room:topic:thread:sender:user"

152+

? ["room:topic:thread", "room"]

153+

: [],

154+

},

155+

config: {

156+

listAccountIds: () => ["default"],

157+

resolveAccount: () => ({}),

180158

},

181159

},

182160

},

183-

} as unknown as OpenClawConfig,

184-

channel: "feishu",

185-

groupId: "unrelated",

186-

parentSessionKey:

187-

"agent:main:feishu:group:oc_group_chat:topic:om_topic_root:sender:ou_topic_user",

188-

});

189-190-

expect(resolved?.model).toBe("demo-provider/demo-feishu-topic-model");

191-

expect(resolved?.matchKey).toBe("oc_group_chat:topic:om_topic_root");

192-

});

161+

]),

162+

);

193163194-

it("keeps mixed-case Feishu scoped markers when matching parent session fallbacks", () => {

195164

const resolved = resolveChannelModelOverride({

196165

cfg: {

197166

channels: {

198167

modelByChannel: {

199-

feishu: {

200-

"oc_group_chat:topic:om_topic_root": "demo-provider/demo-feishu-topic-model",

168+

"scoped-chat": {

169+

"room:topic:thread": "demo-provider/demo-scoped-model",

201170

},

202171

},

203172

},

204173

} as unknown as OpenClawConfig,

205-

channel: "feishu",

174+

channel: "scoped-chat",

206175

groupId: "unrelated",

207-

parentSessionKey:

208-

"agent:main:feishu:group:oc_group_chat:Topic:om_topic_root:Sender:ou_topic_user",

176+

parentSessionKey: "agent:main:scoped-chat:group:room:topic:thread:sender:user",

209177

});

210178211-

expect(resolved?.model).toBe("demo-provider/demo-feishu-topic-model");

212-

expect(resolved?.matchKey).toBe("oc_group_chat:topic:om_topic_root");

179+

expect(resolved?.model).toBe("demo-provider/demo-scoped-model");

180+

expect(resolved?.matchKey).toBe("room:topic:thread");

213181

});

214182215183

it("prefers parent conversation ids over channel-name fallbacks", () => {