@nocobase/plugin-ai 2.2.0-beta.17 → 2.2.0-beta.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/dist/ai/docs/nocobase/ai-dev/watermark-plugin.md +2 -0
  2. package/dist/ai/docs/nocobase/api/cli/api/resource/create.md +4 -3
  3. package/dist/ai/docs/nocobase/plugin-development/build.md +10 -4
  4. package/dist/ai/docs/nocobase/plugin-development/client/appendix/faq.md +1 -1
  5. package/dist/ai/docs/nocobase/plugin-development/client/examples/custom-action.md +2 -0
  6. package/dist/ai/docs/nocobase/plugin-development/client/examples/custom-block.md +2 -0
  7. package/dist/ai/docs/nocobase/plugin-development/client/examples/custom-field.md +2 -0
  8. package/dist/ai/docs/nocobase/plugin-development/client/examples/fullstack-plugin.md +2 -0
  9. package/dist/ai/docs/nocobase/plugin-development/client/examples/settings-page.md +2 -0
  10. package/dist/ai/docs/nocobase/plugin-development/common/i18n.md +3 -3
  11. package/dist/ai/docs/nocobase/plugin-development/server/cache.md +1 -1
  12. package/dist/ai/docs/nocobase/plugin-development/server/collections.md +0 -6
  13. package/dist/ai/docs/nocobase/plugin-development/server/command.md +2 -2
  14. package/dist/ai/docs/nocobase/plugin-development/server/context.md +2 -2
  15. package/dist/ai/docs/nocobase/plugin-development/server/i18n.md +4 -4
  16. package/dist/ai/docs/nocobase/plugin-development/write-your-first-plugin.md +91 -43
  17. package/dist/ai/docs/nocobase/users-permissions/sync/index.md +8 -1
  18. package/dist/ai/docs/nocobase/users-permissions/sync/sources/dingtalk.md +138 -0
  19. package/dist/ai/docs/nocobase/users-permissions/sync/sources/ldap.md +87 -0
  20. package/dist/client/{705.19b642db34de438a.js → 705.a4fe26945d175e8a.js} +1 -1
  21. package/dist/client/index.js +3 -3
  22. package/dist/client-v2/420.a5b929a5e7f330be.js +10 -0
  23. package/dist/client-v2/{705.8dc34d43f02f322c.js → 705.f2e1b26a3f000075.js} +1 -1
  24. package/dist/client-v2/ai-employees/chatbox/hooks/reasoning-stream.d.ts +10 -0
  25. package/dist/client-v2/ai-employees/chatbox/stores/chat-box.d.ts +0 -2
  26. package/dist/client-v2/index.js +3 -3
  27. package/dist/client-v2/llm-providers/forms.d.ts +2 -0
  28. package/dist/client-v2/llm-providers/index.d.ts +1 -0
  29. package/dist/client-v2/models/ai-employees/AIEmployeeShortcutModel.d.ts +1 -0
  30. package/dist/client-v2/repositories/AIConfigRepository.d.ts +2 -0
  31. package/dist/externalVersion.js +18 -16
  32. package/dist/locale/en-US.json +3 -4
  33. package/dist/locale/zh-CN.json +3 -4
  34. package/dist/node_modules/@langchain/mistralai/package.json +1 -1
  35. package/dist/node_modules/@langchain/xai/package.json +1 -1
  36. package/dist/node_modules/fs-extra/package.json +1 -1
  37. package/dist/node_modules/jsonrepair/package.json +1 -1
  38. package/dist/node_modules/just-bash/package.json +1 -1
  39. package/dist/node_modules/nodejs-snowflake/package.json +1 -1
  40. package/dist/node_modules/openai/package.json +1 -1
  41. package/dist/node_modules/zod/package.json +1 -1
  42. package/dist/server/ai-employees/ai-employee.js +40 -24
  43. package/dist/server/ai-employees/reasoning-stream-state.d.ts +23 -0
  44. package/dist/server/ai-employees/reasoning-stream-state.js +63 -0
  45. package/dist/server/llm-providers/common/reasoning.js +18 -10
  46. package/dist/{client-v2/ai-employees/chatbox/components/DebugPanel.d.ts → server/llm-providers/deepseek/index.d.ts} +2 -2
  47. package/dist/server/llm-providers/deepseek/index.js +32 -0
  48. package/dist/server/llm-providers/deepseek/provider.d.ts +57 -0
  49. package/dist/server/llm-providers/deepseek/provider.js +320 -0
  50. package/dist/server/llm-providers/deepseek/reasoning.d.ts +83 -0
  51. package/dist/server/llm-providers/deepseek/reasoning.js +285 -0
  52. package/dist/server/llm-providers/mistral.d.ts +1 -1
  53. package/dist/server/llm-providers/provider.d.ts +1 -0
  54. package/dist/server/llm-providers/provider.js +3 -0
  55. package/dist/server/llm-providers/shengsuanyun.d.ts +29 -0
  56. package/dist/server/llm-providers/shengsuanyun.js +114 -0
  57. package/dist/server/manager/ai-manager.d.ts +3 -0
  58. package/dist/server/manager/ai-manager.js +7 -2
  59. package/dist/server/plugin.js +2 -0
  60. package/dist/server/types/ai-message.type.d.ts +4 -0
  61. package/dist/swagger/index.d.ts +6 -0
  62. package/dist/swagger/schemas.d.ts +6 -0
  63. package/dist/swagger/schemas.js +6 -0
  64. package/package.json +2 -2
  65. package/dist/client-v2/420.b2aedb1ff71fca0e.js +0 -10
  66. package/dist/client-v2/debug-logger.d.ts +0 -52
  67. package/dist/server/llm-providers/deepseek.d.ts +0 -40
  68. package/dist/server/llm-providers/deepseek.js +0 -174
@@ -0,0 +1,32 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __copyProps = (to, from, except, desc) => {
15
+ if (from && typeof from === "object" || typeof from === "function") {
16
+ for (let key of __getOwnPropNames(from))
17
+ if (!__hasOwnProp.call(to, key) && key !== except)
18
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
19
+ }
20
+ return to;
21
+ };
22
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
23
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
24
+ var deepseek_exports = {};
25
+ module.exports = __toCommonJS(deepseek_exports);
26
+ __reExport(deepseek_exports, require("./provider"), module.exports);
27
+ __reExport(deepseek_exports, require("./reasoning"), module.exports);
28
+ // Annotate the CommonJS export names for ESM import in node:
29
+ 0 && (module.exports = {
30
+ ...require("./provider"),
31
+ ...require("./reasoning")
32
+ });
@@ -0,0 +1,57 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { ChatDeepSeek, type ChatDeepSeekInput } from '@langchain/deepseek';
10
+ import { AIMessage, AIMessageChunk, BaseMessage } from '@langchain/core/messages';
11
+ import { ChatOpenAI } from '@langchain/openai';
12
+ import type { CallbackManagerForLLMRun } from '@langchain/core/callbacks/manager';
13
+ import type OpenAI from 'openai';
14
+ import { Model } from '@nocobase/database';
15
+ import { LLMProvider, ReasoningOptions, ResolvedReasoningOptions } from '../provider';
16
+ import { LLMProviderMeta } from '../../manager/ai-manager';
17
+ import { DeepSeekReasoningConfig } from './reasoning';
18
+ import type { AIMessageInput } from '../../types';
19
+ declare class ReasoningDeepSeek extends ChatDeepSeek {
20
+ private readonly reasoningConfig;
21
+ constructor(fields: ChatDeepSeekInput, reasoningConfig: DeepSeekReasoningConfig);
22
+ _generate(messages: BaseMessage[], options: this['ParsedCallOptions'], runManager?: CallbackManagerForLLMRun): Promise<import("@langchain/core/dist/outputs").ChatResult>;
23
+ _streamResponseChunks(messages: BaseMessage[], options: this['ParsedCallOptions'], runManager?: CallbackManagerForLLMRun): AsyncGenerator<import("@langchain/core/dist/outputs").ChatGenerationChunk, void, unknown>;
24
+ completionWithRetry(request: OpenAI.Chat.ChatCompletionCreateParamsStreaming, requestOptions?: OpenAI.RequestOptions): Promise<AsyncIterable<OpenAI.Chat.Completions.ChatCompletionChunk>>;
25
+ completionWithRetry(request: OpenAI.Chat.ChatCompletionCreateParamsNonStreaming, requestOptions?: OpenAI.RequestOptions): Promise<OpenAI.Chat.Completions.ChatCompletion>;
26
+ }
27
+ export declare class DeepSeekProvider extends LLMProvider {
28
+ chatModel: ChatDeepSeek | ChatOpenAI;
29
+ get baseURL(): string;
30
+ createModel(): ChatOpenAI<import("@langchain/openai/dist/chat_models/index.cjs").ChatOpenAICallOptions> | ReasoningDeepSeek;
31
+ parseResponseChunk(chunk: unknown): string;
32
+ parseResponseMessage(message: Model): {
33
+ key: any;
34
+ createdAt: any;
35
+ content: any;
36
+ role: any;
37
+ };
38
+ parseReasoningContent(chunk: AIMessageChunk): {
39
+ status: string;
40
+ content: string;
41
+ } | null;
42
+ reshapeAIMessage({ aiMessage, values }: {
43
+ aiMessage: AIMessage;
44
+ values: AIMessageInput;
45
+ }): void;
46
+ prepareStoredAssistantAdditionalKwargs(additionalKwargs?: Record<string, unknown>): Record<string, unknown> | undefined;
47
+ protected builtInTools(): Record<string, unknown>[];
48
+ parseWebSearchAction(chunk: AIMessageChunk): {
49
+ type: string;
50
+ query: string;
51
+ }[];
52
+ protected resolveReasoningOptions(reasoning?: ReasoningOptions): ResolvedReasoningOptions;
53
+ isToolConflict(): boolean;
54
+ protected isApiSupportedAttachment(): boolean;
55
+ }
56
+ export declare const deepseekProviderOptions: LLMProviderMeta;
57
+ export {};
@@ -0,0 +1,320 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var provider_exports = {};
28
+ __export(provider_exports, {
29
+ DeepSeekProvider: () => DeepSeekProvider,
30
+ deepseekProviderOptions: () => deepseekProviderOptions
31
+ });
32
+ module.exports = __toCommonJS(provider_exports);
33
+ var import_deepseek = require("@langchain/deepseek");
34
+ var import_openai = require("@langchain/openai");
35
+ var import_provider = require("../provider");
36
+ var import_ai_manager = require("../../manager/ai-manager");
37
+ var import_reasoning = require("../common/reasoning");
38
+ var import_reasoning2 = require("./reasoning");
39
+ var import_utils = require("../../utils");
40
+ const isRecord = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
41
+ const collectReferences = (content, responseMetadata) => {
42
+ const references = [];
43
+ const addAnnotations = (annotations) => {
44
+ if (!Array.isArray(annotations)) {
45
+ return;
46
+ }
47
+ for (const annotation of annotations) {
48
+ if (!isRecord(annotation)) {
49
+ continue;
50
+ }
51
+ const value = isRecord(annotation.value) ? annotation.value : annotation;
52
+ const url = typeof annotation.url === "string" ? annotation.url : value.url;
53
+ const title = typeof annotation.title === "string" ? annotation.title : value.title;
54
+ if (typeof url === "string") {
55
+ references.push({ title: typeof title === "string" ? title : "", url });
56
+ }
57
+ }
58
+ };
59
+ if (Array.isArray(content)) {
60
+ for (const block of content) {
61
+ if (isRecord(block) && block.type === "text") {
62
+ addAnnotations(block.annotations);
63
+ }
64
+ }
65
+ }
66
+ if (isRecord(responseMetadata) && Array.isArray(responseMetadata.output)) {
67
+ for (const item of responseMetadata.output) {
68
+ if (!isRecord(item) || item.type !== "message" || !Array.isArray(item.content)) {
69
+ continue;
70
+ }
71
+ for (const part of item.content) {
72
+ if (isRecord(part) && part.type === "output_text") {
73
+ addAnnotations(part.annotations);
74
+ }
75
+ }
76
+ }
77
+ }
78
+ return Array.from(new Map(references.map((reference) => [reference.url, reference])).values());
79
+ };
80
+ class ReasoningDeepSeek extends import_deepseek.ChatDeepSeek {
81
+ constructor(fields, reasoningConfig) {
82
+ super(fields);
83
+ this.reasoningConfig = reasoningConfig;
84
+ }
85
+ async _generate(messages, options, runManager) {
86
+ const reasoningMap = (0, import_reasoning.collectReasoningMap)(messages);
87
+ return super._generate(
88
+ messages,
89
+ {
90
+ ...options || {},
91
+ [import_reasoning.REASONING_MAP_KEY]: reasoningMap
92
+ },
93
+ runManager
94
+ );
95
+ }
96
+ async *_streamResponseChunks(messages, options, runManager) {
97
+ const reasoningMap = (options == null ? void 0 : options[import_reasoning.REASONING_MAP_KEY]) instanceof Map ? options[import_reasoning.REASONING_MAP_KEY] : (0, import_reasoning.collectReasoningMap)(messages);
98
+ yield* super._streamResponseChunks(
99
+ messages,
100
+ {
101
+ ...options || {},
102
+ [import_reasoning.REASONING_MAP_KEY]: reasoningMap
103
+ },
104
+ runManager
105
+ );
106
+ }
107
+ async completionWithRetry(request, requestOptions) {
108
+ const reasoningMap = requestOptions == null ? void 0 : requestOptions[import_reasoning.REASONING_MAP_KEY];
109
+ const modelKwargs = requestOptions == null ? void 0 : requestOptions[import_reasoning.MODEL_KWARGS_KEY];
110
+ (0, import_reasoning.patchRequestMessagesReasoning)(request, reasoningMap);
111
+ (0, import_reasoning.patchRequestModelKwargs)(request, modelKwargs);
112
+ (0, import_reasoning2.normalizeDeepSeekChatRequest)(request, this.reasoningConfig);
113
+ if (request.stream === true) {
114
+ return super.completionWithRetry(request, requestOptions);
115
+ }
116
+ return super.completionWithRetry(request, requestOptions);
117
+ }
118
+ }
119
+ class DeepSeekChatOpenAIResponses extends import_openai.ChatOpenAIResponses {
120
+ constructor(fields, reasoningConfig) {
121
+ super(fields);
122
+ this.reasoningConfig = reasoningConfig;
123
+ }
124
+ async completionWithRetry(request, requestOptions) {
125
+ (0, import_reasoning2.normalizeDeepSeekResponsesRequest)(request, this.reasoningConfig);
126
+ if (request.stream === true) {
127
+ const stream = await super.completionWithRetry(
128
+ request,
129
+ requestOptions
130
+ );
131
+ return (0, import_reasoning2.adaptDeepSeekResponsesStream)(stream);
132
+ }
133
+ return super.completionWithRetry(request, requestOptions);
134
+ }
135
+ }
136
+ class DeepSeekProvider extends import_provider.LLMProvider {
137
+ get baseURL() {
138
+ return "https://api.deepseek.com";
139
+ }
140
+ createModel() {
141
+ const { apiKey } = this.serviceOptions || {};
142
+ const { responseFormat, structuredOutput, ...modelOptions } = this.modelOptions || {};
143
+ const model = typeof modelOptions.model === "string" ? modelOptions.model : "";
144
+ const reasoningConfig = (0, import_reasoning2.resolveDeepSeekReasoningConfig)(model, this.modelReasoningOptions);
145
+ const reasoningParams = (0, import_reasoning2.getDeepSeekReasoningRequestParams)(reasoningConfig);
146
+ if (reasoningConfig.protocol === "responses") {
147
+ const { name, schema, strict } = structuredOutput || {};
148
+ let responseFormatOptions = {
149
+ type: responseFormat ?? "text"
150
+ };
151
+ if (responseFormat === "json_schema" && schema) {
152
+ responseFormatOptions = {
153
+ ...responseFormatOptions,
154
+ schema,
155
+ name: name ?? "default",
156
+ strict: strict ?? false
157
+ };
158
+ }
159
+ const fields = {
160
+ apiKey,
161
+ ...modelOptions,
162
+ modelKwargs: {
163
+ text: {
164
+ format: responseFormatOptions
165
+ },
166
+ ...reasoningParams
167
+ },
168
+ configuration: {
169
+ baseURL: this.getResolvedBaseURL()
170
+ },
171
+ verbose: false
172
+ };
173
+ return new import_openai.ChatOpenAI({
174
+ ...fields,
175
+ responses: new DeepSeekChatOpenAIResponses(fields, reasoningConfig),
176
+ useResponsesApi: true
177
+ });
178
+ }
179
+ const modelKwargs = {
180
+ ...reasoningParams
181
+ };
182
+ if (responseFormat) {
183
+ modelKwargs.response_format = {
184
+ type: responseFormat
185
+ };
186
+ }
187
+ return new ReasoningDeepSeek(
188
+ {
189
+ apiKey,
190
+ ...modelOptions,
191
+ modelKwargs,
192
+ configuration: {
193
+ baseURL: this.getResolvedBaseURL()
194
+ },
195
+ verbose: false
196
+ },
197
+ reasoningConfig
198
+ );
199
+ }
200
+ parseResponseChunk(chunk) {
201
+ if (Array.isArray(chunk)) {
202
+ const text = chunk.filter(isRecord).filter((block) => block.type === "text").map((block) => block.text).filter((value) => typeof value === "string").join("");
203
+ return text ? (0, import_utils.stripToolCallTags)(text) : null;
204
+ }
205
+ return typeof chunk === "string" ? (0, import_utils.stripToolCallTags)(chunk) : null;
206
+ }
207
+ parseResponseMessage(message) {
208
+ var _a, _b;
209
+ const result = super.parseResponseMessage(message);
210
+ if (["user", "tool"].includes(result == null ? void 0 : result.role)) {
211
+ return result;
212
+ }
213
+ const json = ((_a = message == null ? void 0 : message.toJSON) == null ? void 0 : _a.call(message)) ?? {};
214
+ const metadata = isRecord(json.metadata) ? json.metadata : {};
215
+ const additionalKwargs = isRecord(metadata.additional_kwargs) ? metadata.additional_kwargs : {};
216
+ const responseMetadata = isRecord(metadata.response_metadata) ? metadata.response_metadata : {};
217
+ const reasoningContent = (0, import_reasoning2.extractDeepSeekReasoningText)({
218
+ additional_kwargs: additionalKwargs,
219
+ response_metadata: responseMetadata
220
+ });
221
+ if (reasoningContent) {
222
+ result.content = {
223
+ ...result.content ?? {},
224
+ reasoning: {
225
+ status: "stop",
226
+ content: reasoningContent
227
+ }
228
+ };
229
+ }
230
+ const references = collectReferences((_b = result == null ? void 0 : result.content) == null ? void 0 : _b.content, responseMetadata);
231
+ if (references.length) {
232
+ result.content.reference = references;
233
+ }
234
+ return result;
235
+ }
236
+ parseReasoningContent(chunk) {
237
+ const content = (0, import_reasoning2.extractDeepSeekReasoningText)({
238
+ content: chunk.content,
239
+ additional_kwargs: chunk.additional_kwargs
240
+ });
241
+ return content ? { status: "streaming", content } : null;
242
+ }
243
+ reshapeAIMessage({ aiMessage, values }) {
244
+ const reasoningItem = (0, import_reasoning2.getDeepSeekResponsesReasoningItem)(aiMessage);
245
+ const reasoningContent = (0, import_reasoning2.extractDeepSeekReasoningText)(aiMessage);
246
+ if (reasoningItem || reasoningContent) {
247
+ const additionalKwargs = {
248
+ ...values.metadata.additional_kwargs ?? {},
249
+ ...reasoningItem ? { reasoning: reasoningItem } : {},
250
+ ...reasoningContent ? { reasoning_content: reasoningContent } : {}
251
+ };
252
+ values.metadata.additional_kwargs = additionalKwargs;
253
+ aiMessage.additional_kwargs = {
254
+ ...aiMessage.additional_kwargs,
255
+ ...reasoningItem ? { reasoning: reasoningItem } : {}
256
+ };
257
+ aiMessage.lc_kwargs.additional_kwargs = aiMessage.additional_kwargs;
258
+ }
259
+ const references = collectReferences(aiMessage.content, aiMessage.response_metadata);
260
+ if (references.length) {
261
+ values.content.reference = references;
262
+ }
263
+ }
264
+ prepareStoredAssistantAdditionalKwargs(additionalKwargs) {
265
+ var _a, _b;
266
+ if (((_b = (0, import_reasoning2.getDeepSeekModelCapabilities)(String((_a = this.modelOptions) == null ? void 0 : _a.model))) == null ? void 0 : _b.protocol) !== "responses" || !additionalKwargs) {
267
+ return additionalKwargs;
268
+ }
269
+ const nextAdditionalKwargs = { ...additionalKwargs };
270
+ delete nextAdditionalKwargs.reasoning;
271
+ delete nextAdditionalKwargs.reasoning_content;
272
+ return Object.keys(nextAdditionalKwargs).length ? nextAdditionalKwargs : void 0;
273
+ }
274
+ builtInTools() {
275
+ var _a, _b, _c, _d;
276
+ if (((_b = (0, import_reasoning2.getDeepSeekModelCapabilities)(String((_a = this.modelOptions) == null ? void 0 : _a.model))) == null ? void 0 : _b.supportsWebSearch) === true && ((_d = (_c = this.modelOptions) == null ? void 0 : _c.builtIn) == null ? void 0 : _d.webSearch) === true) {
277
+ return [{ type: "web_search" }];
278
+ }
279
+ return [];
280
+ }
281
+ parseWebSearchAction(chunk) {
282
+ var _a;
283
+ const toolOutputs = (_a = chunk.additional_kwargs) == null ? void 0 : _a.tool_outputs;
284
+ if (!Array.isArray(toolOutputs)) {
285
+ return [];
286
+ }
287
+ return toolOutputs.filter(isRecord).filter((tool) => tool.type === "web_search_call" && isRecord(tool.action)).map((tool) => tool.action).filter((action) => typeof action.query === "string").map((action) => ({
288
+ type: typeof action.type === "string" ? action.type : "web_search",
289
+ query: action.query
290
+ }));
291
+ }
292
+ resolveReasoningOptions(reasoning) {
293
+ var _a;
294
+ const model = typeof ((_a = this.modelOptions) == null ? void 0 : _a.model) === "string" ? this.modelOptions.model : "";
295
+ const config = (0, import_reasoning2.resolveDeepSeekReasoningConfig)(model, reasoning);
296
+ const params = (0, import_reasoning2.getDeepSeekReasoningRequestParams)(config);
297
+ return Object.keys(params).length ? { modelKwargs: params } : {};
298
+ }
299
+ isToolConflict() {
300
+ return false;
301
+ }
302
+ isApiSupportedAttachment() {
303
+ return false;
304
+ }
305
+ }
306
+ const deepseekProviderOptions = {
307
+ title: "DeepSeek",
308
+ supportedModel: [import_ai_manager.SupportedModel.LLM],
309
+ models: {
310
+ [import_ai_manager.SupportedModel.LLM]: ["deepseek-v4-pro", "deepseek-v4-flash", "deepseek-chat", "deepseek-reasoner"]
311
+ },
312
+ supportWebSearch: true,
313
+ webSearchModels: ["deepseek-v4-flash", "deepseek-v4-pro"],
314
+ provider: DeepSeekProvider
315
+ };
316
+ // Annotate the CommonJS export names for ESM import in node:
317
+ 0 && (module.exports = {
318
+ DeepSeekProvider,
319
+ deepseekProviderOptions
320
+ });
@@ -0,0 +1,83 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import type OpenAI from 'openai';
10
+ import type { ReasoningOptions } from '../provider';
11
+ export type DeepSeekApiProtocol = 'chat-completions' | 'responses';
12
+ export type DeepSeekThinkingMode = 'enabled' | 'disabled';
13
+ export type DeepSeekReasoningEffort = 'low' | 'high' | 'max';
14
+ type DeepSeekReasoningBehavior = 'switchable' | 'always-on' | 'always-off';
15
+ type DeepSeekModelCapabilities = {
16
+ protocol: DeepSeekApiProtocol;
17
+ reasoning: DeepSeekReasoningBehavior;
18
+ defaultThinking: DeepSeekThinkingMode;
19
+ efforts: ReadonlySet<DeepSeekReasoningEffort>;
20
+ supportsFunctionTools: boolean;
21
+ supportsStructuredOutput: boolean;
22
+ supportsWebSearch: boolean;
23
+ };
24
+ export type DeepSeekReasoningConfig = {
25
+ protocol: DeepSeekApiProtocol;
26
+ recognizedModel: boolean;
27
+ thinking?: DeepSeekThinkingMode;
28
+ effort?: DeepSeekReasoningEffort;
29
+ unsupportedRequestFields: ReadonlySet<string>;
30
+ };
31
+ type ReasoningSource = {
32
+ content?: unknown;
33
+ additional_kwargs?: Record<string, unknown>;
34
+ response_metadata?: Record<string, unknown>;
35
+ };
36
+ export declare const DEEPSEEK_MODEL_CAPABILITIES: {
37
+ readonly 'deepseek-v4-flash': {
38
+ readonly protocol: "responses";
39
+ readonly reasoning: "switchable";
40
+ readonly defaultThinking: "enabled";
41
+ readonly efforts: Set<DeepSeekReasoningEffort>;
42
+ readonly supportsFunctionTools: true;
43
+ readonly supportsStructuredOutput: true;
44
+ readonly supportsWebSearch: true;
45
+ };
46
+ readonly 'deepseek-v4-pro': {
47
+ readonly protocol: "responses";
48
+ readonly reasoning: "switchable";
49
+ readonly defaultThinking: "enabled";
50
+ readonly efforts: Set<DeepSeekReasoningEffort>;
51
+ readonly supportsFunctionTools: true;
52
+ readonly supportsStructuredOutput: true;
53
+ readonly supportsWebSearch: true;
54
+ };
55
+ readonly 'deepseek-chat': {
56
+ readonly protocol: "chat-completions";
57
+ readonly reasoning: "always-off";
58
+ readonly defaultThinking: "disabled";
59
+ readonly efforts: Set<DeepSeekReasoningEffort>;
60
+ readonly supportsFunctionTools: true;
61
+ readonly supportsStructuredOutput: true;
62
+ readonly supportsWebSearch: false;
63
+ };
64
+ readonly 'deepseek-reasoner': {
65
+ readonly protocol: "chat-completions";
66
+ readonly reasoning: "always-on";
67
+ readonly defaultThinking: "enabled";
68
+ readonly efforts: Set<DeepSeekReasoningEffort>;
69
+ readonly supportsFunctionTools: true;
70
+ readonly supportsStructuredOutput: true;
71
+ readonly supportsWebSearch: false;
72
+ };
73
+ };
74
+ export type OfficialDeepSeekModel = keyof typeof DEEPSEEK_MODEL_CAPABILITIES;
75
+ export declare const getDeepSeekModelCapabilities: (model: string) => DeepSeekModelCapabilities | null;
76
+ export declare const resolveDeepSeekReasoningConfig: (model: string, reasoning?: ReasoningOptions) => DeepSeekReasoningConfig;
77
+ export declare const getDeepSeekReasoningRequestParams: (config: DeepSeekReasoningConfig) => Record<string, unknown>;
78
+ export declare const normalizeDeepSeekChatRequest: <Request_1 extends OpenAI.Chat.Completions.ChatCompletionCreateParams>(request: Request_1, config: DeepSeekReasoningConfig) => Request_1;
79
+ export declare const normalizeDeepSeekResponsesRequest: <Request_1 extends OpenAI.Responses.ResponseCreateParams>(request: Request_1, config: DeepSeekReasoningConfig) => Request_1;
80
+ export declare const extractDeepSeekReasoningText: (source: Partial<ReasoningSource>) => string;
81
+ export declare const getDeepSeekResponsesReasoningItem: (source: Partial<ReasoningSource>) => Record<string, unknown> | null;
82
+ export declare function adaptDeepSeekResponsesStream(stream: AsyncIterable<OpenAI.Responses.ResponseStreamEvent>): AsyncGenerator<OpenAI.Responses.ResponseStreamEvent>;
83
+ export {};