@klarkxy/dsh-memory 0.1.2 → 0.1.4
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.md +16 -16
- package/cordis.patch.yml +1 -1
- package/docs/README.zh-CN.md +25 -4
- package/lib/client.inner.cjs +110 -69
- package/lib/client.inner.cjs.map +1 -1
- package/lib/client.js +110 -69
- package/lib/contracts.d.ts +9 -0
- package/lib/contracts.js +3 -1
- package/lib/contracts.js.map +1 -1
- package/lib/index.d.ts +5 -0
- package/lib/index.js +410 -42
- package/lib/index.js.map +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@klarkxy/dsh-memory",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Descriptive context and Dream consolidation for DSH Web: scoped vocabulary, preferences and recent activity.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -54,23 +54,23 @@
|
|
|
54
54
|
{
|
|
55
55
|
"id": "memory",
|
|
56
56
|
"title": "记忆",
|
|
57
|
-
"description": "
|
|
57
|
+
"description": "作者用语、偏好与近期状态;Dream 语境观察与整理",
|
|
58
58
|
"feature": "memory",
|
|
59
59
|
"service": "aiMemory"
|
|
60
60
|
}
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@deepseek-ai/dsh-llm": "0.1.7-
|
|
65
|
-
"@deepseek-ai/dsh-storage-domain": "0.1.7-
|
|
64
|
+
"@deepseek-ai/dsh-llm": "0.1.7-rc.2",
|
|
65
|
+
"@deepseek-ai/dsh-storage-domain": "0.1.7-rc.2",
|
|
66
66
|
"zod": "^4.1.5",
|
|
67
|
-
"@klarkxy/dsh-ai-services": "0.1.
|
|
67
|
+
"@klarkxy/dsh-ai-services": "0.1.3"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
70
|
+
"@deepseek-ai/cordis": "^4.0.4"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
73
|
+
"@deepseek-ai/cordis": "^4.0.4",
|
|
74
74
|
"react": "^18.2.0",
|
|
75
75
|
"@types/react": "18.3.31"
|
|
76
76
|
},
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"registry": "https://registry.npmjs.org/"
|
|
98
98
|
},
|
|
99
99
|
"dshRelease": {
|
|
100
|
-
"contentHash": "sha256-
|
|
100
|
+
"contentHash": "sha256-f70449094d125dbfd32eb18c9b3a0f7f2373562850ac7fef07db59b13606396f"
|
|
101
101
|
},
|
|
102
102
|
"scripts": {
|
|
103
103
|
"build": "tsdown && node ../../scripts/wrap-client.mjs @klarkxy/dsh-memory",
|