@lmzhen/dsh-memory 0.3.83 → 0.4.0
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 +12 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,26 +1,23 @@
|
|
|
1
1
|
# @lmzhen/dsh-memory
|
|
2
2
|
|
|
3
|
-
Memory provider registry
|
|
3
|
+
Memory provider registry: the `memory` service the memory tool and the loops use.
|
|
4
4
|
|
|
5
|
-
## Model
|
|
5
|
+
## Model surface
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- **Model-visible:** nothing of its own: `tool-memory` owns the tool and the injection.
|
|
8
|
+
- **Prompt prefix / KV cache:** unchanged by this package: family-level rules single-sourced in `packages/README.md` §"Model-visible prompt prefix and the KV cache".
|
|
9
|
+
- **Mount it?** yes — the `memory` row, `evolution-host`/`evolution-all`/one-click `evolution-preset`; a seam whose shipped provider is `memory-files`.
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
## Configuration
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
- `provider` (default `''`): pins one provider for all reads and writes; empty = first registered.
|
|
12
14
|
|
|
13
|
-
|
|
15
|
+
## Known limitations
|
|
14
16
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
#### KV Cache effect
|
|
18
|
-
|
|
19
|
-
Independent of request-prefix construction. This package does not alter the assembled prompt or tool list.
|
|
20
|
-
|
|
21
|
-
## Known Limitations and Deferred Work
|
|
17
|
+
- A pin no mounted provider satisfies warns when a differently-named provider registers, then fails the first read/write with the pin named: there is no earlier check (registry and registration API are one service).
|
|
22
18
|
|
|
19
|
+
**Runtime invariant:** No companion is published. The platform auto-assembles nothing and the family mounts no `<pkg>/invariant` cordis row, so a companion here would never execute (v37 S2.1 / I-3).
|
|
23
20
|
|
|
24
|
-
|
|
21
|
+
## Notes and history
|
|
25
22
|
|
|
26
|
-
|
|
23
|
+
- `provider` pins the registry to one provider name (V27 G6.3); empty (the default) serves the FIRST registered provider, so with two providers mounted the choice is row order.
|