@chatpanel/pii 0.7.2 → 0.7.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tool-harness.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatpanel/pii",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "The canonical ChatPanel privacy engine \u2014 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",
package/tool-harness.js CHANGED
@@ -87,7 +87,8 @@ export function placeholderToolNote({ toolData = 'real', ownTools = false } = {}
87
87
  + 'yourself — your own web search, shell, file or code tools — receives the placeholder '
88
88
  + 'text literally and will find nothing. So for ANY lookup that involves a placeholder, '
89
89
  + 'call the listed tool (for example `find` with action `web_search` or `history_search`) '
90
- + 'rather than your own; use your own tools only for things that involve no placeholder.'
90
+ + 'rather than your own. Prefer the listed tools for lookups in general the user sees '
91
+ + 'those as steps — and keep your own tools for what the listed ones cannot do.'
91
92
  : '';
92
93
  return intro + remote + rules + own;
93
94
  }