[PR #2757] docs: add Blindfold PII protection integration #2860

Open
opened 2026-06-05 18:20:12 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/2757
Author: @michalvich
Created: 2/21/2026
Status: 🔄 Open

Base: mainHead: add-blindfold-integration


📝 Commits (1)

  • e2166dd docs: add Blindfold PII protection integration

📊 Changes

3 files changed (+184 additions, -0 deletions)

View changed files

src/oss/python/integrations/document_transformers/blindfold.mdx (+129 -0)
📝 src/oss/python/integrations/providers/all_providers.mdx (+8 -0)
src/oss/python/integrations/providers/blindfold.mdx (+47 -0)

📄 Description

Summary

Add Blindfold as a LangChain integration provider. Blindfold is a PII detection and protection gateway for AI applications — it detects sensitive data (names, emails, phone numbers, addresses, SSNs, and more) across 18+ languages and replaces it with reversible tokens.

The langchain-blindfold package (already published on PyPI) provides:

  • BlindfoldPIITransformer — Document transformer for protecting PII in RAG pipelines and vector stores
  • BlindfoldTokenizer / BlindfoldDetokenizer — Runnables for composing PII protection into any LangChain chain
  • blindfold_protect() — Convenience factory for paired tokenizer/detokenizer

Files added/modified

  • src/oss/python/integrations/providers/blindfold.mdx — Provider page with overview and setup
  • src/oss/python/integrations/document_transformers/blindfold.mdx — Document transformer page with usage examples for all 6 PII methods (tokenize, redact, mask, hash, synthesize, encrypt), detection policies, region support, and chain composition
  • src/oss/python/integrations/providers/all_providers.mdx — Added Card entry in alphabetical order

Links

Checklist

  • Code examples have been tested and work correctly
  • Used root relative paths for internal links
  • Navigation in src/docs.json does not need updating (pages are discoverable via category index)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/2757 **Author:** [@michalvich](https://github.com/michalvich) **Created:** 2/21/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `add-blindfold-integration` --- ### 📝 Commits (1) - [`e2166dd`](https://github.com/langchain-ai/docs/commit/e2166dde585708a356b679ae0f33a886025f404f) docs: add Blindfold PII protection integration ### 📊 Changes **3 files changed** (+184 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `src/oss/python/integrations/document_transformers/blindfold.mdx` (+129 -0) 📝 `src/oss/python/integrations/providers/all_providers.mdx` (+8 -0) ➕ `src/oss/python/integrations/providers/blindfold.mdx` (+47 -0) </details> ### 📄 Description ## Summary Add [Blindfold](https://blindfold.dev) as a LangChain integration provider. Blindfold is a PII detection and protection gateway for AI applications — it detects sensitive data (names, emails, phone numbers, addresses, SSNs, and more) across 18+ languages and replaces it with reversible tokens. The [`langchain-blindfold`](https://pypi.org/project/langchain-blindfold/) package (already published on PyPI) provides: - **`BlindfoldPIITransformer`** — Document transformer for protecting PII in RAG pipelines and vector stores - **`BlindfoldTokenizer` / `BlindfoldDetokenizer`** — Runnables for composing PII protection into any LangChain chain - **`blindfold_protect()`** — Convenience factory for paired tokenizer/detokenizer ### Files added/modified - `src/oss/python/integrations/providers/blindfold.mdx` — Provider page with overview and setup - `src/oss/python/integrations/document_transformers/blindfold.mdx` — Document transformer page with usage examples for all 6 PII methods (tokenize, redact, mask, hash, synthesize, encrypt), detection policies, region support, and chain composition - `src/oss/python/integrations/providers/all_providers.mdx` — Added Card entry in alphabetical order ### Links - PyPI: https://pypi.org/project/langchain-blindfold/ - GitHub: https://github.com/blindfold-dev/langchain-blindfold - Docs: https://docs.blindfold.dev ## Checklist - [x] Code examples have been tested and work correctly - [x] Used root relative paths for internal links - [x] Navigation in `src/docs.json` does not need updating (pages are discoverable via category index) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 18:20:12 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#2860