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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Jina AI
Jina AI
The Cloudflare Blog
V
Visual Studio Blog
博客园_首页
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园 - Franky

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(vllm): own nemotron thinking payloads · openclaw...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -1,7 +1,10 @@

11

import type { StreamFn } from "@mariozechner/pi-agent-core";

22

import type { ProviderWrapStreamFnContext } from "openclaw/plugin-sdk/plugin-entry";

33

import { normalizeProviderId } from "openclaw/plugin-sdk/provider-model-shared";

4-

import { createPayloadPatchStreamWrapper } from "openclaw/plugin-sdk/provider-stream-shared";

4+

import {

5+

createPayloadPatchStreamWrapper,

6+

isOpenAICompatibleThinkingEnabled,

7+

} from "openclaw/plugin-sdk/provider-stream-shared";

5869

type VllmThinkingLevel = ProviderWrapStreamFnContext["thinkingLevel"];

710

type VllmQwenThinkingFormat = "chat-template" | "top-level";

@@ -41,19 +44,6 @@ function resolveVllmQwenThinkingFormat(

4144

);

4245

}

434644-

function resolveOpenAICompatibleThinkingEnabled(params: {

45-

thinkingLevel: VllmThinkingLevel;

46-

options: Parameters<StreamFn>[2];

47-

}): boolean {

48-

const options = (params.options ?? {}) as { reasoningEffort?: unknown; reasoning?: unknown };

49-

const raw = options.reasoningEffort ?? options.reasoning ?? params.thinkingLevel ?? "high";

50-

if (typeof raw !== "string") {

51-

return true;

52-

}

53-

const normalized = raw.trim().toLowerCase();

54-

return normalized !== "off" && normalized !== "none";

55-

}

56-5747

function setQwenChatTemplateThinking(payload: Record<string, unknown>, enabled: boolean): void {

5848

const existing = payload.chat_template_kwargs;

5949

if (existing && typeof existing === "object" && !Array.isArray(existing)) {

@@ -73,6 +63,31 @@ function setQwenChatTemplateThinking(payload: Record<string, unknown>, enabled:

7363

};

7464

}

756566+

function isVllmNemotronModel(model: { api?: unknown; provider?: unknown; id?: unknown }): boolean {

67+

return (

68+

model.api === "openai-completions" &&

69+

typeof model.provider === "string" &&

70+

normalizeProviderId(model.provider) === "vllm" &&

71+

typeof model.id === "string" &&

72+

/\bnemotron-3(?:[-_](?:nano|super|ultra))?\b/i.test(model.id)

73+

);

74+

}

75+76+

function setNemotronThinkingOffChatTemplateKwargs(payload: Record<string, unknown>): void {

77+

const defaults = {

78+

enable_thinking: false,

79+

force_nonempty_content: true,

80+

};

81+

const existing = payload.chat_template_kwargs;

82+

payload.chat_template_kwargs =

83+

existing && typeof existing === "object" && !Array.isArray(existing)

84+

? {

85+

...defaults,

86+

...(existing as Record<string, unknown>),

87+

}

88+

: defaults;

89+

}

90+7691

export function createVllmQwenThinkingWrapper(params: {

7792

baseStreamFn: StreamFn | undefined;

7893

format: VllmQwenThinkingFormat;

@@ -81,7 +96,7 @@ export function createVllmQwenThinkingWrapper(params: {

8196

return createPayloadPatchStreamWrapper(

8297

params.baseStreamFn,

8398

({ payload: payloadObj, options }) => {

84-

const enableThinking = resolveOpenAICompatibleThinkingEnabled({

99+

const enableThinking = isOpenAICompatibleThinkingEnabled({

85100

thinkingLevel: params.thinkingLevel,

86101

options,

87102

});

@@ -100,17 +115,50 @@ export function createVllmQwenThinkingWrapper(params: {

100115

);

101116

}

102117118+

export function createVllmProviderThinkingWrapper(params: {

119+

baseStreamFn: StreamFn | undefined;

120+

qwenFormat?: VllmQwenThinkingFormat;

121+

thinkingLevel: VllmThinkingLevel;

122+

}): StreamFn {

123+

const qwenWrapped = params.qwenFormat

124+

? createVllmQwenThinkingWrapper({

125+

baseStreamFn: params.baseStreamFn,

126+

format: params.qwenFormat,

127+

thinkingLevel: params.thinkingLevel,

128+

})

129+

: params.baseStreamFn;

130+

return createPayloadPatchStreamWrapper(

131+

qwenWrapped,

132+

({ payload: payloadObj }) => {

133+

setNemotronThinkingOffChatTemplateKwargs(payloadObj);

134+

},

135+

{

136+

shouldPatch: ({ model }) =>

137+

model.api === "openai-completions" &&

138+

params.thinkingLevel === "off" &&

139+

isVllmNemotronModel(model),

140+

},

141+

);

142+

}

143+103144

export function wrapVllmProviderStream(ctx: ProviderWrapStreamFnContext): StreamFn | undefined {

104145

if (!isVllmProviderId(ctx.provider) || (ctx.model && ctx.model.api !== "openai-completions")) {

105146

return undefined;

106147

}

107-

const format = resolveVllmQwenThinkingFormat(ctx.extraParams);

108-

if (!format) {

148+

const qwenFormat = resolveVllmQwenThinkingFormat(ctx.extraParams);

149+

const shouldHandleNemotron =

150+

ctx.thinkingLevel === "off" &&

151+

isVllmNemotronModel({

152+

api: "openai-completions",

153+

provider: ctx.provider,

154+

id: ctx.modelId,

155+

});

156+

if (!qwenFormat && !shouldHandleNemotron) {

109157

return undefined;

110158

}

111-

return createVllmQwenThinkingWrapper({

159+

return createVllmProviderThinkingWrapper({

112160

baseStreamFn: ctx.streamFn,

113-

format,

161+

qwenFormat,

114162

thinkingLevel: ctx.thinkingLevel,

115163

});

116164

}