n8n-nodes-mindrouter 0.5.2 → 0.5.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.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,6 +62,15 @@ Typical pattern — send sanitized text to an external service, then restore:
|
|
|
62
62
|
|
|
63
63
|
The map is returned to your workflow and never stored server-side. Calls are metered per your MindRouter plan and logged (counts only, never the text) in the dashboard's guardrail history.
|
|
64
64
|
|
|
65
|
+
**When to use which:**
|
|
66
|
+
|
|
67
|
+
- **Tokenize → Restore** — wrap any *external* AI or API call: the service works with placeholders and never sees real values. This is the default whenever text leaves MindRouter.
|
|
68
|
+
- **Mask** — before anything permanent: logs, tickets, spreadsheets, datasets. No later step needs the real values, so keep none.
|
|
69
|
+
- **Scan** — as a gate: branch with an IF node on `pii_counts` to route sensitive messages to approval instead of processing them.
|
|
70
|
+
- Requests through **MindRouter Chat Model** already pass the gateway's server-side guardrails — this node earns its place when text goes anywhere else.
|
|
71
|
+
|
|
72
|
+
Full guide with example workflows: [mindrouter.io/docs/integrations/n8n](https://mindrouter.io/docs/integrations/n8n).
|
|
73
|
+
|
|
65
74
|
### MindRouter — direct calls
|
|
66
75
|
|
|
67
76
|
- **Chat**: send a prompt (plus optional system prompt) or a full OpenAI-format `messages` array. Simplified output (`text`, `model`, `usage`) by default; raw API response when *Simplify Output* is off.
|
package/package.json
CHANGED