@deepseek-ai/dsh-tool-web 0.0.1-rc.2 → 0.0.1-rc.3
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.
- package/README.i18n.yaml +2 -2
- package/README.md +4 -4
- package/README.zh.md +5 -5
- package/lib/index.js +4 -4
- package/lib/types/fetch.d.ts +2 -2
- package/lib/types/index.d.ts +1 -1
- package/lib/types/search.d.ts +1 -1
- package/package.json +20 -20
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write packages/web/tool-web/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: 81dc4d3f3dbf9788e68b86513bfa09271fb99c84
|
|
6
|
+
README.zh.md: 8e976f23f72347e12c6aea35f9b99c5d8ad31d85
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
English | [中文](README.zh.md)
|
|
4
4
|
|
|
5
|
-
The model-facing web tool suite — `web_search` and `web_fetch` — over the [web capability seam](../web/README.md) (`ctx.web`). It owns model-facing concerns only: tool names, JSON schemas, snake_case argument names, prompt sections, the result-count bound, result formatting, HTML→markdown presentation, and the UI presentation projection — `presentCall`, `presentResult` (a `card: 'web'` result card discriminated by `kind: 'search' | 'fetch'`), and the `output.presentationMeta` that carries the structured search sources or the fetch summary the lossy render text cannot (see the [web-result-card Agent Note](../../../.agents/notes/implemented/feature/2026-07-30-web-result-card.md)). All web access goes through `ctx.web`; this package never imports a concrete provider. Neither tool exposes a model-facing timeout — each tool's cooperative tool-call budget is declared here via config (`fetchTimeoutMs`/`searchTimeoutMs`, attached as `ToolDefinition.timeoutMs`) and enforced by [`@deepseek-ai/dsh-timeout-policy`](../../guard/timeout-policy/README.md) (a `tools/execute` wrapper); each tool just forwards `exec.signal` to the seam.
|
|
5
|
+
The model-facing web tool suite — `web_search` and `web_fetch` — over the [web capability seam](../web/README.md) (`ctx.web`). It owns model-facing concerns only: tool names, JSON schemas, snake_case argument names, prompt sections, the result-count bound, result formatting, HTML→markdown presentation, and the UI presentation projection — `presentCall`, `presentResult` (a `card: 'web'` result card discriminated by `kind: 'search' | 'fetch'`), and the `output.presentationMeta` that carries the structured search sources or the fetch summary the lossy render text cannot (see the [web-result-card Agent Note](../../../.agents/notes/implemented/feature/2026-07-30-web-result-card.md)). All web access goes through `ctx.web`; this package never imports a concrete provider. Neither tool exposes a model-facing timeout — each tool's cooperative tool-call budget is declared here via config (`fetchTimeoutMs`/`searchTimeoutMs`, attached as `ToolDefinition.timeoutMs`) and enforced by [`@deepseek-ai/dsh-tool-call-timeout-policy`](../../guard/timeout-policy/README.md) (a `tools/execute` wrapper); each tool just forwards `exec.signal` to the seam.
|
|
6
6
|
|
|
7
7
|
Each tool is registered independently; a product that wants only one disables the other via config (`{ search: false }` / `{ fetch: false }`). Search guidance mentions `web_fetch` only when fetch is also config-enabled; a search-only composition instead tells the model to use returned snippets and cite their URLs.
|
|
8
8
|
|
|
@@ -11,7 +11,7 @@ Each tool is registered independently; a product that wants only one disables th
|
|
|
11
11
|
| Tool | Args | Behavior |
|
|
12
12
|
|---|---|---|
|
|
13
13
|
| `web_search` | `query` (string) | Discovery. Returns an optional answer plus source URLs. `max_results` is **not** model-facing — the tool sets the bound (the `searchMaxResults` config, default 8) and passes it to the seam. |
|
|
14
|
-
| `web_fetch` | `url` (string) | Retrieves a specific URL. HTML bodies are rendered to markdown (turndown with GFM tables/strikethrough); text bodies pass through. A non-2xx status is reported, not an error. The tool-call timeout is deployment policy (`dsh-timeout-policy`), not a model argument. |
|
|
14
|
+
| `web_fetch` | `url` (string) | Retrieves a specific URL. HTML bodies are rendered to markdown (turndown with GFM tables/strikethrough); text bodies pass through. A non-2xx status is reported, not an error. The tool-call timeout is deployment policy (`dsh-tool-call-timeout-policy`), not a model argument. |
|
|
15
15
|
|
|
16
16
|
Both tools opt into concurrent scheduling because provider reads return content without mutating parent-agent state.
|
|
17
17
|
|
|
@@ -28,7 +28,7 @@ The normalized service results are also the canonical tool values: `WebSearchRes
|
|
|
28
28
|
| `searchTimeoutMs` | `30000` | Cooperative tool-call timeout budget (ms) for `web_search`. |
|
|
29
29
|
| `fetchMaxOutputChars` | `200000` | Cap on source characters converted synchronously and on one complete `web_fetch` output (header, rendered body, and footer); a cut body gets the truncation notice when it fits. |
|
|
30
30
|
|
|
31
|
-
`fetchTimeoutMs`/`searchTimeoutMs` declare each tool's cooperative timeout budget (attached as `ToolDefinition.timeoutMs`), enforced by [`@deepseek-ai/dsh-timeout-policy`](../../guard/timeout-policy/README.md); the model-facing schema exposes no timeout argument. `fetchMaxOutputChars` bounds both synchronous conversion work and the complete rendered result: only that many source characters are converted, and the header, converted prefix, and truncation notice are then capped together. The default leaves headroom above the local provider's 100,000-character body cap, but rendered expansion can still make the final bound truncate the result.
|
|
31
|
+
`fetchTimeoutMs`/`searchTimeoutMs` declare each tool's cooperative timeout budget (attached as `ToolDefinition.timeoutMs`), enforced by [`@deepseek-ai/dsh-tool-call-timeout-policy`](../../guard/timeout-policy/README.md); the model-facing schema exposes no timeout argument. `fetchMaxOutputChars` bounds both synchronous conversion work and the complete rendered result: only that many source characters are converted, and the header, converted prefix, and truncation notice are then capped together. The default leaves headroom above the local provider's 100,000-character body cap, but rendered expansion can still make the final bound truncate the result.
|
|
32
32
|
|
|
33
33
|
```yaml
|
|
34
34
|
- id: tool-web
|
|
@@ -37,7 +37,7 @@ The normalized service results are also the canonical tool values: `WebSearchRes
|
|
|
37
37
|
|
|
38
38
|
## Stable registration
|
|
39
39
|
|
|
40
|
-
Tool registration follows product **enablement**, not backend availability. A tool stays visible even when its selected provider is missing, misconfigured, ambiguous, or temporarily unavailable; the seam resolves the provider at execution time and execution fails with a structured `WebError` (e.g. `WEB_PROVIDER_UNAVAILABLE`, `WEB_PROVIDER_AMBIGUOUS`), which `
|
|
40
|
+
Tool registration follows product **enablement**, not backend availability. A tool stays visible even when its selected provider is missing, misconfigured, ambiguous, or temporarily unavailable; the seam resolves the provider at execution time and execution fails with a structured `WebError` (e.g. `WEB_PROVIDER_UNAVAILABLE`, `WEB_PROVIDER_AMBIGUOUS`), which `ToolRuntime.execute()` turns into an error tool result the model can read and hooks/UI can route on. This keeps the model schema stable without making plugin load order, credential state, or HMR timing part of the model-facing contract. To remove a web tool entirely, disable it here in config.
|
|
41
41
|
|
|
42
42
|
The tool never calls a provider's `available()` and never enumerates providers — its only execution path is `ctx.web.search()` / `ctx.web.fetch()`, and provider unavailability reaches it as the structured `WebError` codes selection throws at execution time. Provider selection stays entirely inside the seam, with one owner.
|
|
43
43
|
|
package/README.zh.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) | 中文
|
|
4
4
|
|
|
5
|
-
面向模型的 web 工具套件 `web_search` 与 `web_fetch`,构建于 [web 能力 seam](../web/README.md)(`ctx.web`)之上。它只负责面向模型的事项:工具名称、JSON Schema、snake_case 参数名称、提示词区段、结果数量上限、结果格式、HTML→markdown 呈现,以及 UI 呈现投影——`presentCall`、`presentResult`(以 `kind: 'search' | 'fetch'` 区分的 `card: 'web'` 结果卡片),以及承载有损渲染文本无法携带的结构化搜索来源或抓取摘要的 `output.presentationMeta`(见 [web-result-card Agent Note](../../../.agents/notes/implemented/feature/2026-07-30-web-result-card.md))。所有 web 访问都通过 `ctx.web`;该包绝不导入具体提供方。两个工具都不公开面向模型的超时:每个工具的协作式工具调用超时预算通过配置在此声明(`fetchTimeoutMs`/`searchTimeoutMs`,附加为 `ToolDefinition.timeoutMs`),由 [`@deepseek-ai/dsh-timeout-policy`](../../guard/timeout-policy/README.md)(`tools/execute` 包装层)强制执行;每个工具只把 `exec.signal` 转发给 seam。
|
|
5
|
+
面向模型的 web 工具套件 `web_search` 与 `web_fetch`,构建于 [web 能力 seam](../web/README.md)(`ctx.web`)之上。它只负责面向模型的事项:工具名称、JSON Schema、snake_case 参数名称、提示词区段、结果数量上限、结果格式、HTML→markdown 呈现,以及 UI 呈现投影——`presentCall`、`presentResult`(以 `kind: 'search' | 'fetch'` 区分的 `card: 'web'` 结果卡片),以及承载有损渲染文本无法携带的结构化搜索来源或抓取摘要的 `output.presentationMeta`(见 [web-result-card Agent Note](../../../.agents/notes/implemented/feature/2026-07-30-web-result-card.md))。所有 web 访问都通过 `ctx.web`;该包绝不导入具体提供方。两个工具都不公开面向模型的超时:每个工具的协作式工具调用超时预算通过配置在此声明(`fetchTimeoutMs`/`searchTimeoutMs`,附加为 `ToolDefinition.timeoutMs`),由 [`@deepseek-ai/dsh-tool-call-timeout-policy`](../../guard/timeout-policy/README.md)(`tools/execute` 包装层)强制执行;每个工具只把 `exec.signal` 转发给 seam。
|
|
6
6
|
|
|
7
7
|
每个工具独立注册;只需要其中一个工具的产品可以通过配置禁用另一个(`{ search: false }`/`{ fetch: false }`)。仅当抓取也通过配置启用时,搜索指引才会提及 `web_fetch`;仅启用搜索的组合则会要求模型使用返回的 snippet 并引用其 URL。
|
|
8
8
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
| 工具 | 参数 | 行为 |
|
|
12
12
|
|---|---|---|
|
|
13
13
|
| `web_search` | `query`(string) | 用于发现信息。返回可选答案与来源 URL。`max_results` **不**面向模型:工具设置上限(`searchMaxResults` 配置,默认 8)并传给 seam。 |
|
|
14
|
-
| `web_fetch` | `url`(string) | 获取特定 URL。HTML 主体渲染为 markdown(turndown,带 GFM 表格/删除线);文本主体原样通过。非 2xx 状态会报告,而非报错。工具调用超时是部署策略(`dsh-timeout-policy`),不是模型参数。 |
|
|
14
|
+
| `web_fetch` | `url`(string) | 获取特定 URL。HTML 主体渲染为 markdown(turndown,带 GFM 表格/删除线);文本主体原样通过。非 2xx 状态会报告,而非报错。工具调用超时是部署策略(`dsh-tool-call-timeout-policy`),不是模型参数。 |
|
|
15
15
|
|
|
16
16
|
两个工具都选择并发调度,因为提供方读取会返回内容,不会修改父 agent(智能体)的状态。
|
|
17
17
|
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
| `searchTimeoutMs` | `30000` | `web_search` 的协作式工具调用超时预算(ms)。 |
|
|
29
29
|
| `fetchMaxOutputChars` | `200000` | 同步转换的源字符数与单次完整 `web_fetch` 输出的上限(状态头、渲染后的主体与页脚合并计算);主体被截断时,在能容纳的情况下附带截断提示。 |
|
|
30
30
|
|
|
31
|
-
`fetchTimeoutMs`/`searchTimeoutMs` 声明每个工具的协作式超时预算(附加为 `ToolDefinition.timeoutMs`),由 [`@deepseek-ai/dsh-timeout-policy`](../../guard/timeout-policy/README.md) 强制执行;面向模型的 schema 不公开超时参数。`fetchMaxOutputChars` 同时限制同步转换工作量和完整渲染结果:只转换至多该数量的源字符,随后对状态头、转换后的前缀和截断提示合并设限。默认值为本地提供方的 100,000 字符主体上限留出余量,但渲染膨胀仍可能使最终上限截断结果。
|
|
31
|
+
`fetchTimeoutMs`/`searchTimeoutMs` 声明每个工具的协作式超时预算(附加为 `ToolDefinition.timeoutMs`),由 [`@deepseek-ai/dsh-tool-call-timeout-policy`](../../guard/timeout-policy/README.md) 强制执行;面向模型的 schema 不公开超时参数。`fetchMaxOutputChars` 同时限制同步转换工作量和完整渲染结果:只转换至多该数量的源字符,随后对状态头、转换后的前缀和截断提示合并设限。默认值为本地提供方的 100,000 字符主体上限留出余量,但渲染膨胀仍可能使最终上限截断结果。
|
|
32
32
|
|
|
33
33
|
```yaml
|
|
34
34
|
- id: tool-web
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
|
|
38
38
|
## 稳定注册
|
|
39
39
|
|
|
40
|
-
工具注册遵循产品**启用状态**,而非后端可用性。即使选中的提供方缺失、错误配置、存在歧义或暂时不可用,工具仍保持可见;seam 在执行时解析提供方,执行以结构化 `WebError`(例如 `WEB_PROVIDER_UNAVAILABLE`、`WEB_PROVIDER_AMBIGUOUS`)失败,`
|
|
40
|
+
工具注册遵循产品**启用状态**,而非后端可用性。即使选中的提供方缺失、错误配置、存在歧义或暂时不可用,工具仍保持可见;seam 在执行时解析提供方,执行以结构化 `WebError`(例如 `WEB_PROVIDER_UNAVAILABLE`、`WEB_PROVIDER_AMBIGUOUS`)失败,`ToolRuntime.execute()` 会把它转为模型可读、钩子/UI 可路由的错误工具结果。这样无需把插件加载顺序、凭据状态或 HMR(热模块替换)时机纳入面向模型约定,也能保持模型 schema 稳定。要彻底移除 web 工具,请在此处通过配置将其禁用。
|
|
41
41
|
|
|
42
42
|
工具绝不会调用提供方的 `available()`,也不会枚举提供方;唯一执行路径是 `ctx.web.search()`/`ctx.web.fetch()`,提供方不可用时,选择机制会在执行阶段抛出结构化 `WebError`,其错误码由工具接收。提供方选择完全留在 seam 内,由单一主体负责。
|
|
43
43
|
|
|
@@ -93,7 +93,7 @@ Use the web_fetch tool to retrieve the content of a specific HTTP(S) URL (for ex
|
|
|
93
93
|
|
|
94
94
|
#### 模型看到的内容
|
|
95
95
|
|
|
96
|
-
可选的提供方答案之后是 `Sources:`,再跟随内容取决于数据且格式严格为 `- [<title-or-url>](<url>)` 的行,并可添加后缀 ` — <snippet> (<publishedAt>)`。既无答案也无来源时,结果显示 `No results found
|
|
96
|
+
可选的提供方答案之后是 `Sources:`,再跟随内容取决于数据且格式严格为 `- [<title-or-url>](<url>)` 的行,并可添加后缀 ` — <snippet> (<publishedAt>)`。既无答案也无来源时,结果显示 `No results found.`。列表被截断至上限时会添加 `(Showing the first <count> sources. Refine the query for more.)`;每个结果都以 `Cite the relevant URLs above as markdown links in your answer.` 结尾。
|
|
97
97
|
|
|
98
98
|
#### Token 影响
|
|
99
99
|
|
package/lib/index.js
CHANGED
|
@@ -166,7 +166,7 @@ function presentSearchResult(args, result) {
|
|
|
166
166
|
* @param maxResults - the deployment's source cap, sent as every seam
|
|
167
167
|
* request's `maxResults`.
|
|
168
168
|
* @param timeoutMs - the cooperative tool-call budget (ms) attached as the tool's
|
|
169
|
-
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-timeout-policy` to enforce.
|
|
169
|
+
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-tool-call-timeout-policy` to enforce.
|
|
170
170
|
* @param fetchEnabled - whether the same composition exposes `web_fetch`, which
|
|
171
171
|
* controls whether search guidance may recommend that follow-up tool.
|
|
172
172
|
*/
|
|
@@ -303,7 +303,7 @@ turndown.addRule("tableRowWithoutSpanExpansion", {
|
|
|
303
303
|
* Validate value constraints the schema DSL can't express: a non-blank `url`.
|
|
304
304
|
* Throws a plain `Error` otherwise. No timeout parameter — the tool-call budget
|
|
305
305
|
* is deployment policy declared via `fetchTimeoutMs` config and enforced by
|
|
306
|
-
* `@deepseek-ai/dsh-timeout-policy`, not a model argument.
|
|
306
|
+
* `@deepseek-ai/dsh-tool-call-timeout-policy`, not a model argument.
|
|
307
307
|
*
|
|
308
308
|
* @param args - the schema-validated `web_fetch` arguments.
|
|
309
309
|
* @returns the arguments as the seam's request fields.
|
|
@@ -624,7 +624,7 @@ function presentFetchResult(args, result) {
|
|
|
624
624
|
* @param ctx - context whose `tools` and `systemPrompt` registries receive the
|
|
625
625
|
* registrations; both are effect-scoped and unregister on plugin dispose.
|
|
626
626
|
* @param timeoutMs - the cooperative tool-call budget (ms) attached as the tool's
|
|
627
|
-
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-timeout-policy` to enforce.
|
|
627
|
+
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-tool-call-timeout-policy` to enforce.
|
|
628
628
|
* @param maxOutputChars - cap on the complete rendered tool output (see
|
|
629
629
|
* {@link formatFetchOutput}) and on source characters converted synchronously.
|
|
630
630
|
*/
|
|
@@ -760,7 +760,7 @@ function assertPositiveInteger(name, value) {
|
|
|
760
760
|
* that wants only one disables the other in config. Each tool's cooperative
|
|
761
761
|
* timeout budget (`fetchTimeoutMs`/`searchTimeoutMs`, default 30000) is resolved
|
|
762
762
|
* here and attached to the tool as `ToolDefinition.timeoutMs` for
|
|
763
|
-
* `@deepseek-ai/dsh-timeout-policy` to enforce. The tools' disposers are
|
|
763
|
+
* `@deepseek-ai/dsh-tool-call-timeout-policy` to enforce. The tools' disposers are
|
|
764
764
|
* fiber-scoped (the effect-based registries clean up on dispose), so no manual
|
|
765
765
|
* teardown is needed.
|
|
766
766
|
*/
|
package/lib/types/fetch.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import type { WebFetchResult } from '@deepseek-ai/dsh-web';
|
|
|
11
11
|
* Validate value constraints the schema DSL can't express: a non-blank `url`.
|
|
12
12
|
* Throws a plain `Error` otherwise. No timeout parameter — the tool-call budget
|
|
13
13
|
* is deployment policy declared via `fetchTimeoutMs` config and enforced by
|
|
14
|
-
* `@deepseek-ai/dsh-timeout-policy`, not a model argument.
|
|
14
|
+
* `@deepseek-ai/dsh-tool-call-timeout-policy`, not a model argument.
|
|
15
15
|
*
|
|
16
16
|
* @param args - the schema-validated `web_fetch` arguments.
|
|
17
17
|
* @returns the arguments as the seam's request fields.
|
|
@@ -100,7 +100,7 @@ export declare function presentFetchResult(args: {
|
|
|
100
100
|
* @param ctx - context whose `tools` and `systemPrompt` registries receive the
|
|
101
101
|
* registrations; both are effect-scoped and unregister on plugin dispose.
|
|
102
102
|
* @param timeoutMs - the cooperative tool-call budget (ms) attached as the tool's
|
|
103
|
-
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-timeout-policy` to enforce.
|
|
103
|
+
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-tool-call-timeout-policy` to enforce.
|
|
104
104
|
* @param maxOutputChars - cap on the complete rendered tool output (see
|
|
105
105
|
* {@link formatFetchOutput}) and on source characters converted synchronously.
|
|
106
106
|
*/
|
package/lib/types/index.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export declare const Config: z<Config>;
|
|
|
44
44
|
* that wants only one disables the other in config. Each tool's cooperative
|
|
45
45
|
* timeout budget (`fetchTimeoutMs`/`searchTimeoutMs`, default 30000) is resolved
|
|
46
46
|
* here and attached to the tool as `ToolDefinition.timeoutMs` for
|
|
47
|
-
* `@deepseek-ai/dsh-timeout-policy` to enforce. The tools' disposers are
|
|
47
|
+
* `@deepseek-ai/dsh-tool-call-timeout-policy` to enforce. The tools' disposers are
|
|
48
48
|
* fiber-scoped (the effect-based registries clean up on dispose), so no manual
|
|
49
49
|
* teardown is needed.
|
|
50
50
|
*/
|
package/lib/types/search.d.ts
CHANGED
|
@@ -100,7 +100,7 @@ export declare function presentSearchResult(args: {
|
|
|
100
100
|
* @param maxResults - the deployment's source cap, sent as every seam
|
|
101
101
|
* request's `maxResults`.
|
|
102
102
|
* @param timeoutMs - the cooperative tool-call budget (ms) attached as the tool's
|
|
103
|
-
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-timeout-policy` to enforce.
|
|
103
|
+
* `ToolDefinition.timeoutMs` for `@deepseek-ai/dsh-tool-call-timeout-policy` to enforce.
|
|
104
104
|
* @param fetchEnabled - whether the same composition exposes `web_fetch`, which
|
|
105
105
|
* controls whether search guidance may recommend that follow-up tool.
|
|
106
106
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-tool-web",
|
|
3
3
|
"description": "Model-facing web tools (web_search, web_fetch) over the DeepSeek Harness web capability seam (ctx.web)",
|
|
4
|
-
"version": "0.0.1-rc.
|
|
4
|
+
"version": "0.0.1-rc.3",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "restricted"
|
|
7
7
|
},
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
],
|
|
33
33
|
"license": "BSD-3-Clause",
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@deepseek-ai/dsh-
|
|
36
|
-
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.
|
|
37
|
-
"@deepseek-ai/dsh-tools": "^0.0.1-rc.
|
|
38
|
-
"@deepseek-ai/dsh-
|
|
39
|
-
"@deepseek-ai/
|
|
40
|
-
"@deepseek-ai/
|
|
35
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.3",
|
|
36
|
+
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.3",
|
|
37
|
+
"@deepseek-ai/dsh-tools": "^0.0.1-rc.3",
|
|
38
|
+
"@deepseek-ai/dsh-llm": "^0.0.1-rc.3",
|
|
39
|
+
"@deepseek-ai/cordis": "^4.0.1-rc.1",
|
|
40
|
+
"@deepseek-ai/dsh-web": "^0.0.1-rc.3"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@joplin/turndown-plugin-gfm": "^1.0.67",
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/turndown": "^5.0.6",
|
|
49
|
-
"@deepseek-ai/dsh-agent": "^0.0.1-rc.
|
|
50
|
-
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.
|
|
51
|
-
"@deepseek-ai/dsh-llm": "^0.0.1-rc.
|
|
52
|
-
"@deepseek-ai/dsh-session": "^0.0.1-rc.
|
|
53
|
-
"@deepseek-ai/dsh-spill-local": "^0.0.1-rc.
|
|
54
|
-
"@deepseek-ai/dsh-
|
|
55
|
-
"@deepseek-ai/dsh-
|
|
56
|
-
"@deepseek-ai/dsh-timeout-policy": "^0.0.1-rc.
|
|
57
|
-
"@deepseek-ai/dsh-tools": "^0.0.1-rc.
|
|
58
|
-
"@deepseek-ai/dsh-web": "^0.0.1-rc.
|
|
59
|
-
"@deepseek-ai/dsh-web-
|
|
60
|
-
"@deepseek-ai/
|
|
61
|
-
"@deepseek-ai/
|
|
49
|
+
"@deepseek-ai/dsh-agent": "^0.0.1-rc.3",
|
|
50
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.3",
|
|
51
|
+
"@deepseek-ai/dsh-llm": "^0.0.1-rc.3",
|
|
52
|
+
"@deepseek-ai/dsh-session": "^0.0.1-rc.3",
|
|
53
|
+
"@deepseek-ai/dsh-spill-local": "^0.0.1-rc.3",
|
|
54
|
+
"@deepseek-ai/dsh-system-prompt": "^0.0.1-rc.3",
|
|
55
|
+
"@deepseek-ai/dsh-spill-policy": "^0.0.1-rc.3",
|
|
56
|
+
"@deepseek-ai/dsh-tool-call-timeout-policy": "^0.0.1-rc.3",
|
|
57
|
+
"@deepseek-ai/dsh-tools": "^0.0.1-rc.3",
|
|
58
|
+
"@deepseek-ai/dsh-web": "^0.0.1-rc.3",
|
|
59
|
+
"@deepseek-ai/dsh-web-search-exa": "^0.0.1-rc.3",
|
|
60
|
+
"@deepseek-ai/dsh-web-fetch-http": "^0.0.1-rc.3",
|
|
61
|
+
"@deepseek-ai/cordis": "^4.0.1-rc.1"
|
|
62
62
|
}
|
|
63
63
|
}
|