@lmzhen/dsh-memory 0.3.82 → 0.3.83
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 +2 -2
- package/lib/types/index.d.ts +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @lmzhen/dsh-memory
|
|
2
2
|
|
|
3
3
|
Memory provider registry for self-evolution
|
|
4
4
|
|
|
@@ -8,7 +8,7 @@ Memory provider registry for self-evolution
|
|
|
8
8
|
|
|
9
9
|
#### What the model sees
|
|
10
10
|
|
|
11
|
-
`@
|
|
11
|
+
`@lmzhen/dsh-memory` registers no direct prompt or tool schema itself. Model-visible effects are owned by the packages that consume this service.
|
|
12
12
|
|
|
13
13
|
#### Token effect
|
|
14
14
|
|
package/lib/types/index.d.ts
CHANGED
|
@@ -14,6 +14,9 @@ export interface Config {
|
|
|
14
14
|
export interface MemoryOperation {
|
|
15
15
|
action: 'add' | 'replace' | 'remove';
|
|
16
16
|
facts?: string | undefined;
|
|
17
|
+
/** PLAN-R2 P2-6 (2026-09-16): content is an accepted alias honored by the
|
|
18
|
+
* reference store (applyBatchCore reads `facts ?? content`); third-party
|
|
19
|
+
* providers may normalize it to their own field. */
|
|
17
20
|
content?: string | undefined;
|
|
18
21
|
old_text?: string | undefined;
|
|
19
22
|
}
|