@deepseek-ai/dsh-spill 0.1.7-alpha.1 → 0.1.7-alpha.2

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 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/spill/spill/README.md
5
- README.md: f951a0d689b66aab641b917e43009038bceae153
6
- README.zh.md: a8178e0942ef5798ac41634ffc2fcaa428d133c4
5
+ README.md: 9208da2f63522e9b50d2511a78773df8e4216768
6
+ README.zh.md: 279881b557765f06f98a2a210faba9bb9ef08fb2
package/README.md CHANGED
@@ -33,13 +33,13 @@ Choose spill storage when a deployment needs to keep full text retrievable after
33
33
 
34
34
  ### Smallest working composition
35
35
 
36
- Mount a backend and the policy together; with `maxInlineBytes` set, any oversized plain-text tool result becomes a preview plus a locator automatically.
36
+ Mount a backend and the policy together; with `maxInlineTokens` set, an oversized text/image tool result becomes a preview plus a locator automatically.
37
37
 
38
38
  ```yaml
39
39
  - name: '@deepseek-ai/dsh-spill-local'
40
40
  - name: '@deepseek-ai/dsh-spill-policy'
41
41
  config:
42
- maxInlineBytes: 50000
42
+ maxInlineTokens: 12500
43
43
  ```
44
44
 
45
45
  ### Saving text
package/README.zh.md CHANGED
@@ -33,13 +33,13 @@ kind: "package-reference"
33
33
 
34
34
  ### 最小可用组合
35
35
 
36
- 把后端与策略一起挂载;设置 `maxInlineBytes` 后,任何过大的纯文本工具结果都会自动变成预览加定位信息。
36
+ 把后端与策略一起挂载;设置 `maxInlineTokens` 后,过大的图文工具结果都会自动变成预览加定位信息。
37
37
 
38
38
  ```yaml
39
39
  - name: '@deepseek-ai/dsh-spill-local'
40
40
  - name: '@deepseek-ai/dsh-spill-policy'
41
41
  config:
42
- maxInlineBytes: 50000
42
+ maxInlineTokens: 12500
43
43
  ```
44
44
 
45
45
  ### 保存文本
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-spill",
3
3
  "description": "Abstract spill storage seam (ctx.spillStore) for the DeepSeek Harness — save oversized tool text and return a retrieval locator",
4
- "version": "0.1.7-alpha.1",
4
+ "version": "0.1.7-alpha.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -27,15 +27,15 @@
27
27
  ],
28
28
  "license": "MIT",
29
29
  "peerDependencies": {
30
- "@deepseek-ai/dsh-brand": "^0.1.7-alpha.1",
31
- "@deepseek-ai/dsh-llm": "^0.1.7-alpha.1",
32
- "@deepseek-ai/cordis": "^4.0.3",
33
- "@deepseek-ai/dsh-session": "^0.1.7-alpha.1"
30
+ "@deepseek-ai/dsh-llm": "0.1.7-alpha.2",
31
+ "@deepseek-ai/dsh-brand": "0.1.7-alpha.2",
32
+ "@deepseek-ai/dsh-session": "0.1.7-alpha.2",
33
+ "@deepseek-ai/cordis": "~4.0.4"
34
34
  },
35
35
  "devDependencies": {
36
- "@deepseek-ai/dsh-brand": "^0.1.7-alpha.1",
37
- "@deepseek-ai/dsh-llm": "^0.1.7-alpha.1",
38
- "@deepseek-ai/dsh-session": "^0.1.7-alpha.1",
39
- "@deepseek-ai/cordis": "^4.0.3"
36
+ "@deepseek-ai/dsh-brand": "0.1.7-alpha.2",
37
+ "@deepseek-ai/dsh-session": "0.1.7-alpha.2",
38
+ "@deepseek-ai/dsh-llm": "0.1.7-alpha.2",
39
+ "@deepseek-ai/cordis": "~4.0.4"
40
40
  }
41
41
  }