@deepseek-ai/dsh-time-context 0.1.0-rc.7 → 0.1.0-rc.8

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/lib/index.js CHANGED
@@ -119,7 +119,7 @@ new RegExp(String.raw`\b(?:input|prompt|request|messages?)\b.{0,40}` + String.ra
119
119
  *
120
120
  * @module @deepseek-ai/dsh-llm/retry-policy
121
121
  */
122
- const DEFAULT_MAX_RETRIES = 2;
122
+ const DEFAULT_MAX_RETRIES = 5;
123
123
  const DEFAULT_INITIAL_DELAY_MS = 500;
124
124
  const DEFAULT_MAX_DELAY_MS = 1e4;
125
125
  const DEFAULT_JITTER_RATIO = .1;
package/lib/invariant.js CHANGED
@@ -29,7 +29,7 @@ new RegExp(String.raw`\b(?:input|prompt|request|messages?)\b.{0,40}` + String.ra
29
29
  *
30
30
  * @module @deepseek-ai/dsh-llm/retry-policy
31
31
  */
32
- const DEFAULT_MAX_RETRIES = 2;
32
+ const DEFAULT_MAX_RETRIES = 5;
33
33
  const DEFAULT_INITIAL_DELAY_MS = 500;
34
34
  const DEFAULT_MAX_DELAY_MS = 1e4;
35
35
  const DEFAULT_JITTER_RATIO = .1;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-time-context",
3
3
  "description": "Opt-in durable per-step context with the current time and elapsed time",
4
- "version": "0.1.0-rc.7",
4
+ "version": "0.1.0-rc.8",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -35,21 +35,21 @@
35
35
  "@deepseek-ai/schemastery": "^3.18.1"
36
36
  },
37
37
  "peerDependencies": {
38
- "@deepseek-ai/dsh-agent": "^0.1.0-rc.7",
39
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.7",
40
- "@deepseek-ai/dsh-session": "^0.1.0-rc.7",
38
+ "@deepseek-ai/dsh-agent": "^0.1.0-rc.8",
39
+ "@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
40
+ "@deepseek-ai/dsh-session": "^0.1.0-rc.8",
41
41
  "@deepseek-ai/cordis": "^4.0.1"
42
42
  },
43
43
  "devDependencies": {
44
- "@deepseek-ai/dsh-agent": "^0.1.0-rc.7",
45
- "@deepseek-ai/dsh-agent-loop": "^0.1.0-rc.7",
46
- "@deepseek-ai/dsh-agent-loop-testkit": "^0.1.0-rc.7",
47
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.7",
48
- "@deepseek-ai/dsh-llm": "^0.1.0-rc.7",
49
- "@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.7",
50
- "@deepseek-ai/dsh-session": "^0.1.0-rc.7",
51
- "@deepseek-ai/dsh-tools": "^0.1.0-rc.7",
52
- "@deepseek-ai/cordis": "^4.0.1",
53
- "@deepseek-ai/dsh-loader-smoke": "^0.1.0-rc.7"
44
+ "@deepseek-ai/dsh-agent": "^0.1.0-rc.8",
45
+ "@deepseek-ai/dsh-agent-loop": "^0.1.0-rc.8",
46
+ "@deepseek-ai/dsh-agent-loop-testkit": "^0.1.0-rc.8",
47
+ "@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
48
+ "@deepseek-ai/dsh-llm": "^0.1.0-rc.8",
49
+ "@deepseek-ai/dsh-loader-smoke": "^0.1.0-rc.8",
50
+ "@deepseek-ai/dsh-session": "^0.1.0-rc.8",
51
+ "@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.8",
52
+ "@deepseek-ai/dsh-tools": "^0.1.0-rc.8",
53
+ "@deepseek-ai/cordis": "^4.0.1"
54
54
  }
55
55
  }