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

推荐订阅源

The GitHub Blog
The GitHub Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
罗磊的独立博客
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
小众软件
小众软件
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
S
SegmentFault 最新的问题
H
Help Net Security
量子位

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(discord): isolate model picker apply flow · open...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -0,0 +1,180 @@

1+

import type { ButtonInteraction, StringSelectMenuInteraction } from "@buape/carbon";

2+

import type { ChatCommandDefinition, CommandArgs } from "openclaw/plugin-sdk/command-auth";

3+

import {

4+

applyModelOverrideToSessionEntry,

5+

resolveStorePath,

6+

updateSessionStore,

7+

type OpenClawConfig,

8+

} from "openclaw/plugin-sdk/config-runtime";

9+

import type { ResolvedAgentRoute } from "openclaw/plugin-sdk/routing";

10+

import { logVerbose } from "openclaw/plugin-sdk/runtime-env";

11+

import { withTimeout } from "openclaw/plugin-sdk/text-runtime";

12+

import {

13+

recordDiscordModelPickerRecentModel,

14+

type DiscordModelPickerPreferenceScope,

15+

} from "./model-picker-preferences.js";

16+

import type { DispatchDiscordCommandInteraction } from "./native-command-dispatch.js";

17+

import type { ThreadBindingManager } from "./thread-bindings.js";

18+19+

type DiscordConfig = NonNullable<OpenClawConfig["channels"]>["discord"];

20+21+

export type DiscordModelPickerSelectionCommand = {

22+

prompt: string;

23+

command: ChatCommandDefinition;

24+

args?: CommandArgs;

25+

};

26+27+

export type DiscordModelPickerApplyResult =

28+

| { status: "success"; effectiveModelRef: string; noticeMessage: string }

29+

| { status: "mismatch"; effectiveModelRef: string; noticeMessage: string }

30+

| { status: "rejected"; noticeMessage: string }

31+

| { status: "timeout"; noticeMessage: string }

32+

| { status: "failed"; noticeMessage: string };

33+34+

async function persistDiscordModelPickerOverride(params: {

35+

cfg: OpenClawConfig;

36+

route: ResolvedAgentRoute;

37+

provider: string;

38+

model: string;

39+

isDefault: boolean;

40+

}): Promise<boolean> {

41+

const storePath = resolveStorePath(params.cfg.session?.store, {

42+

agentId: params.route.agentId,

43+

});

44+

let persisted = false;

45+

await updateSessionStore(storePath, (store) => {

46+

const entry = store[params.route.sessionKey];

47+

if (!entry) {

48+

return;

49+

}

50+

persisted =

51+

applyModelOverrideToSessionEntry({

52+

entry,

53+

selection: {

54+

provider: params.provider,

55+

model: params.model,

56+

isDefault: params.isDefault,

57+

},

58+

markLiveSwitchPending: true,

59+

}).updated || persisted;

60+

});

61+

return persisted;

62+

}

63+64+

export async function applyDiscordModelPickerSelection(params: {

65+

interaction: ButtonInteraction | StringSelectMenuInteraction;

66+

selectionCommand: DiscordModelPickerSelectionCommand;

67+

dispatchCommandInteraction: DispatchDiscordCommandInteraction;

68+

cfg: OpenClawConfig;

69+

discordConfig: DiscordConfig;

70+

accountId: string;

71+

sessionPrefix: string;

72+

threadBindings: ThreadBindingManager;

73+

route: ResolvedAgentRoute;

74+

resolvedModelRef: string;

75+

selectedProvider: string;

76+

selectedModel: string;

77+

defaultProvider: string;

78+

defaultModel: string;

79+

preferenceScope: DiscordModelPickerPreferenceScope;

80+

settleMs: number;

81+

resolveCurrentModel: (route: ResolvedAgentRoute) => string;

82+

}): Promise<DiscordModelPickerApplyResult> {

83+

try {

84+

const dispatchResult = await withTimeout(

85+

params.dispatchCommandInteraction({

86+

interaction: params.interaction,

87+

prompt: params.selectionCommand.prompt,

88+

command: params.selectionCommand.command,

89+

commandArgs: params.selectionCommand.args,

90+

cfg: params.cfg,

91+

discordConfig: params.discordConfig,

92+

accountId: params.accountId,

93+

sessionPrefix: params.sessionPrefix,

94+

preferFollowUp: true,

95+

threadBindings: params.threadBindings,

96+

suppressReplies: true,

97+

}),

98+

12000,

99+

);

100+

if (!dispatchResult.accepted) {

101+

return {

102+

status: "rejected",

103+

noticeMessage: `❌ Failed to apply ${params.resolvedModelRef}. Try /model ${params.resolvedModelRef} directly.`,

104+

};

105+

}

106+107+

const fallbackRoute = dispatchResult.effectiveRoute ?? params.route;

108+

if (params.settleMs > 0) {

109+

await new Promise((resolve) => setTimeout(resolve, params.settleMs));

110+

}

111+112+

let effectiveModelRef = params.resolveCurrentModel(fallbackRoute);

113+

let persisted = effectiveModelRef === params.resolvedModelRef;

114+115+

if (!persisted) {

116+

logVerbose(

117+

`discord: model picker override mismatch — expected ${params.resolvedModelRef} but read ${effectiveModelRef} from session key ${fallbackRoute.sessionKey}; attempting direct session override persist`,

118+

);

119+

try {

120+

const directlyPersisted = await persistDiscordModelPickerOverride({

121+

cfg: params.cfg,

122+

route: fallbackRoute,

123+

provider: params.selectedProvider,

124+

model: params.selectedModel,

125+

isDefault:

126+

params.selectedProvider === params.defaultProvider &&

127+

params.selectedModel === params.defaultModel,

128+

});

129+

await new Promise((resolve) => setTimeout(resolve, 100));

130+

effectiveModelRef = params.resolveCurrentModel(fallbackRoute);

131+

persisted = effectiveModelRef === params.resolvedModelRef;

132+

if (!persisted) {

133+

logVerbose(

134+

`discord: direct session override persist failed — expected ${params.resolvedModelRef} but read ${effectiveModelRef} from session key ${fallbackRoute.sessionKey}`,

135+

);

136+

} else if (!directlyPersisted) {

137+

logVerbose(

138+

`discord: direct session override persist became a no-op because ${params.resolvedModelRef} was already present on re-read for session key ${fallbackRoute.sessionKey}`,

139+

);

140+

}

141+

} catch (error) {

142+

const message = error instanceof Error ? error.message : String(error);

143+

logVerbose(

144+

`discord: direct session override persist threw for session key ${fallbackRoute.sessionKey}: ${message}`,

145+

);

146+

}

147+

}

148+149+

if (persisted) {

150+

await recordDiscordModelPickerRecentModel({

151+

scope: params.preferenceScope,

152+

modelRef: params.resolvedModelRef,

153+

limit: 5,

154+

}).catch(() => undefined);

155+

}

156+157+

return persisted

158+

? {

159+

status: "success",

160+

effectiveModelRef,

161+

noticeMessage: `✅ Model set to ${params.resolvedModelRef}.`,

162+

}

163+

: {

164+

status: "mismatch",

165+

effectiveModelRef,

166+

noticeMessage: `⚠️ Tried to set ${params.resolvedModelRef}, but current model is ${effectiveModelRef}.`,

167+

};

168+

} catch (error) {

169+

if (error instanceof Error && error.message === "timeout") {

170+

return {

171+

status: "timeout",

172+

noticeMessage: `⏳ Model change to ${params.resolvedModelRef} is still processing. Check /status in a few seconds.`,

173+

};

174+

}

175+

return {

176+

status: "failed",

177+

noticeMessage: `❌ Failed to apply ${params.resolvedModelRef}. Try /model ${params.resolvedModelRef} directly.`,

178+

};

179+

}

180+

}