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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
L
LangChain Blog
S
SegmentFault 最新的问题
J
Java Code Geeks
V
Visual Studio Blog
H
Help Net Security
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
B
Blog RSS Feed
The Cloudflare Blog
MyScale Blog
MyScale Blog
月光博客
月光博客
Microsoft Security Blog
Microsoft Security Blog
美团技术团队

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
feat(deepseek): support v4 models · openclaw/openclaw@7d1...
lsdsjy · 2026-04-24 · via Recent Commits to openclaw:main

@@ -1,8 +1,12 @@

1+

import type { Context, Model } from "@mariozechner/pi-ai";

2+

import { createAssistantMessageEventStream } from "@mariozechner/pi-ai";

13

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

4+

import { buildOpenAICompletionsParams } from "../../src/agents/openai-transport-stream.js";

25

import { resolveProviderPluginChoice } from "../../src/plugins/provider-auth-choice.runtime.js";

36

import { registerSingleProviderPlugin } from "../../test/helpers/plugins/plugin-registration.js";

47

import { runSingleProviderCatalog } from "../test-support/provider-model-test-helpers.js";

58

import deepseekPlugin from "./index.js";

9+

import { createDeepSeekV4ThinkingWrapper } from "./stream.js";

610711

describe("deepseek provider plugin", () => {

812

it("registers DeepSeek with api-key auth wizard metadata", async () => {

@@ -28,14 +32,181 @@ describe("deepseek provider plugin", () => {

2832

expect(catalogProvider.api).toBe("openai-completions");

2933

expect(catalogProvider.baseUrl).toBe("https://api.deepseek.com");

3034

expect(catalogProvider.models?.map((model) => model.id)).toEqual([

35+

"deepseek-v4-flash",

36+

"deepseek-v4-pro",

3137

"deepseek-chat",

3238

"deepseek-reasoner",

3339

]);

40+

expect(catalogProvider.models?.find((model) => model.id === "deepseek-v4-flash")).toMatchObject(

41+

{

42+

reasoning: true,

43+

contextWindow: 1_000_000,

44+

maxTokens: 384_000,

45+

compat: expect.objectContaining({

46+

supportsReasoningEffort: true,

47+

maxTokensField: "max_tokens",

48+

}),

49+

},

50+

);

3451

expect(

3552

catalogProvider.models?.find((model) => model.id === "deepseek-reasoner")?.reasoning,

3653

).toBe(true);

3754

});

385556+

it("owns OpenAI-compatible replay policy", async () => {

57+

const provider = await registerSingleProviderPlugin(deepseekPlugin);

58+59+

expect(provider.buildReplayPolicy?.({ modelApi: "openai-completions" } as never)).toMatchObject(

60+

{

61+

sanitizeToolCallIds: true,

62+

toolCallIdMode: "strict",

63+

validateGeminiTurns: true,

64+

validateAnthropicTurns: true,

65+

},

66+

);

67+

});

68+69+

it("maps thinking levels to DeepSeek V4 payload controls", async () => {

70+

let capturedPayload: Record<string, unknown> | undefined;

71+

const baseStreamFn = (

72+

_model: Model<"openai-completions">,

73+

_context: Context,

74+

options?: { onPayload?: (payload: unknown) => unknown },

75+

) => {

76+

capturedPayload = {

77+

model: "deepseek-v4-pro",

78+

reasoning_effort: "high",

79+

};

80+

options?.onPayload?.(capturedPayload);

81+

const stream = createAssistantMessageEventStream();

82+

queueMicrotask(() => stream.end());

83+

return stream;

84+

};

85+86+

const wrapThinkingOff = createDeepSeekV4ThinkingWrapper(baseStreamFn as never, "off");

87+

expect(wrapThinkingOff).toBeDefined();

88+

wrapThinkingOff?.(

89+

{

90+

provider: "deepseek",

91+

id: "deepseek-v4-pro",

92+

api: "openai-completions",

93+

} as never,

94+

{ messages: [] } as never,

95+

{},

96+

);

97+98+

expect(capturedPayload).toMatchObject({ thinking: { type: "disabled" } });

99+

expect(capturedPayload).not.toHaveProperty("reasoning_effort");

100+101+

const wrapThinkingXhigh = createDeepSeekV4ThinkingWrapper(baseStreamFn as never, "xhigh");

102+

expect(wrapThinkingXhigh).toBeDefined();

103+

wrapThinkingXhigh?.(

104+

{

105+

provider: "deepseek",

106+

id: "deepseek-v4-pro",

107+

api: "openai-completions",

108+

} as never,

109+

{ messages: [] } as never,

110+

{},

111+

);

112+113+

expect(capturedPayload).toMatchObject({

114+

thinking: { type: "enabled" },

115+

reasoning_effort: "max",

116+

});

117+

});

118+119+

it("strips replayed reasoning_content when DeepSeek V4 thinking is disabled", async () => {

120+

let capturedPayload: Record<string, unknown> | undefined;

121+

const model = {

122+

provider: "deepseek",

123+

id: "deepseek-v4-flash",

124+

name: "DeepSeek V4 Flash",

125+

api: "openai-completions",

126+

baseUrl: "https://api.deepseek.com",

127+

reasoning: true,

128+

input: ["text"],

129+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

130+

contextWindow: 1_000_000,

131+

maxTokens: 384_000,

132+

compat: {

133+

supportsUsageInStreaming: true,

134+

supportsReasoningEffort: true,

135+

maxTokensField: "max_tokens",

136+

},

137+

} as Model<"openai-completions">;

138+

const context = {

139+

messages: [

140+

{ role: "user", content: "hi", timestamp: 1 },

141+

{

142+

role: "assistant",

143+

api: "openai-completions",

144+

provider: "deepseek",

145+

model: "deepseek-v4-flash",

146+

content: [

147+

{

148+

type: "thinking",

149+

thinking: "call reasoning",

150+

thinkingSignature: "reasoning_content",

151+

},

152+

{ type: "toolCall", id: "call_1", name: "read", arguments: {} },

153+

],

154+

usage: {

155+

input: 0,

156+

output: 0,

157+

cacheRead: 0,

158+

cacheWrite: 0,

159+

totalTokens: 0,

160+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0, total: 0 },

161+

},

162+

stopReason: "toolUse",

163+

timestamp: 2,

164+

},

165+

{

166+

role: "toolResult",

167+

toolCallId: "call_1",

168+

toolName: "read",

169+

content: [{ type: "text", text: "ok" }],

170+

isError: false,

171+

timestamp: 3,

172+

},

173+

],

174+

tools: [

175+

{

176+

name: "read",

177+

description: "Read data",

178+

parameters: { type: "object", properties: {}, required: [], additionalProperties: false },

179+

},

180+

],

181+

} as Context;

182+

const baseStreamFn = (

183+

streamModel: Model<"openai-completions">,

184+

streamContext: Context,

185+

options?: { onPayload?: (payload: unknown, model: unknown) => unknown },

186+

) => {

187+

capturedPayload = buildOpenAICompletionsParams(streamModel, streamContext, {

188+

reasoning: "high",

189+

} as never);

190+

options?.onPayload?.(capturedPayload, streamModel);

191+

const stream = createAssistantMessageEventStream();

192+

queueMicrotask(() => stream.end());

193+

return stream;

194+

};

195+196+

const wrapThinkingNone = createDeepSeekV4ThinkingWrapper(

197+

baseStreamFn as never,

198+

"none" as never,

199+

);

200+

expect(wrapThinkingNone).toBeDefined();

201+

wrapThinkingNone?.(model, context, {});

202+203+

expect(capturedPayload).toMatchObject({ thinking: { type: "disabled" } });

204+

expect(capturedPayload).not.toHaveProperty("reasoning_effort");

205+

expect((capturedPayload?.messages as Array<Record<string, unknown>>)[1]).not.toHaveProperty(

206+

"reasoning_content",

207+

);

208+

});

209+39210

it("publishes configured DeepSeek models through plugin-owned catalog augmentation", async () => {

40211

const provider = await registerSingleProviderPlugin(deepseekPlugin);

41212