@chatpanel/pii 0.1.1 → 0.2.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/index.js +2 -0
- package/package.json +3 -2
package/index.js
CHANGED
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
// 'chatpanel-pii/pii-redact.js' deterministic redact/restore + vault
|
|
9
9
|
// 'chatpanel-pii/pii-detect.js' local NER / LLM entity detection
|
|
10
10
|
// 'chatpanel-pii/pipeline.js' pure turn orchestration + tier/scope gating
|
|
11
|
+
// 'chatpanel-pii/tool-rank.js' deterministic tool narrowing (auto mode)
|
|
11
12
|
|
|
12
13
|
export * from './pii-redact.js';
|
|
13
14
|
export * from './pii-detect.js';
|
|
14
15
|
export * from './pipeline.js';
|
|
16
|
+
export * from './tool-rank.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatpanel/pii",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "The canonical ChatPanel privacy engine — reversible PII redaction + pseudonymization with local entity detection. Pure, dependency-free ESM shared by the ChatPanel extension, gateway, and bridge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
".": "./index.js",
|
|
9
9
|
"./pii-redact.js": "./pii-redact.js",
|
|
10
10
|
"./pii-detect.js": "./pii-detect.js",
|
|
11
|
-
"./pipeline.js": "./pipeline.js"
|
|
11
|
+
"./pipeline.js": "./pipeline.js",
|
|
12
|
+
"./tool-rank.js": "./tool-rank.js"
|
|
12
13
|
},
|
|
13
14
|
"files": [
|
|
14
15
|
"index.js",
|