@lmzhen/dsh-evolution-io-node 0.3.82 → 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 +11 -17
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,26 +1,20 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @lmzhen/dsh-evolution-io-node
|
|
2
2
|
|
|
3
|
-
Local atomic node:fs IO provider
|
|
3
|
+
Local atomic node:fs IO provider: registers the `node` backend into `ctx.evolutionIo`; the
|
|
4
|
+
implementation is core's `nodeEvolutionIo()` (this package adds the name).
|
|
4
5
|
|
|
5
|
-
## Model
|
|
6
|
+
## Model surface
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
- **Model-visible:** nothing of its own: the rows that write through this backend own the injection.
|
|
9
|
+
- **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".
|
|
10
|
+
- **Mount it?** yes — the `evolution-io-node` row, in `evolution-host`/`evolution-all`/one-click `evolution-preset`.
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
## Known limitations
|
|
10
13
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
#### Token effect
|
|
14
|
-
|
|
15
|
-
Zero direct token effect from this package; consumers add any model-visible tokens.
|
|
16
|
-
|
|
17
|
-
#### KV Cache effect
|
|
18
|
-
|
|
19
|
-
Independent of request-prefix construction. This package does not alter the assembled prompt or tool list.
|
|
14
|
+
- Local node:fs provider. Remote or shared media requires another `ctx.evolutionIo` provider.
|
|
20
15
|
|
|
21
|
-
|
|
16
|
+
**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).
|
|
22
17
|
|
|
18
|
+
## Notes and history
|
|
23
19
|
|
|
24
|
-
- Local node:fs provider. Remote or shared media requires another `ctx.evolutionIo` provider.
|
|
25
20
|
|
|
26
|
-
**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).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-io-node",
|
|
3
3
|
"description": "Local atomic node:fs IO provider (community build)",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
],
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@lmzhen/dsh-evolution-core": "^0.
|
|
29
|
+
"@lmzhen/dsh-evolution-core": "^0.4.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
33
|
-
"@lmzhen/dsh-evolution-io": "^0.
|
|
33
|
+
"@lmzhen/dsh-evolution-io": "^0.4.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@lmzhen/dsh-evolution-io": "^0.
|
|
36
|
+
"@lmzhen/dsh-evolution-io": "^0.4.0"
|
|
37
37
|
}
|
|
38
38
|
}
|