Skip to main content

Arcjet Redact

The Arcjet redact integration allows you to redact sensitive user information from your prompts before sending it to a Chat Model.

Arcjet Redact runs entirely on your own machine and never sends data anywhere else, ensuring best in class privacy and performance.

The Arcjet Redact object is not a chat model itself, instead it wraps an LLM. It redacts the text that is inputted to it and then unredacts the output of the wrapped chat model before returning it.

Overview

Integration details

ClassPackageLocalSerializablePY SupportPackage downloadsPackage latest
Arcjet@langchain/communityNPM - DownloadsNPM - Version

Installation

Install the Arcjet Redaction Library:

yarn add @arcjet/redact

And install LangChain Community:

yarn add @langchain/community

And now you're ready to start protecting your chat model calls with Arcjet Redaction!

Usage

import {
ArcjetRedact,
ArcjetSensitiveInfoType,
} from "@langchain/community/chat_models/arcjet";
import { ChatOpenAI } from "@langchain/openai";

// Create an instance of another chat model for Arcjet to wrap
const openai = new ChatOpenAI({
temperature: 0.8,
model: "gpt-3.5-turbo-0125",
});

const arcjetRedactOptions = {
// Specify a LLM that Arcjet Redact will call once it has redacted the input.
chatModel: openai,

// Specify the list of entities that should be redacted.
// If this isn't specified then all entities will be redacted.
entities: [
"email",
"phone-number",
"ip-address",
"custom-entity",
] as ArcjetSensitiveInfoType[],

// You can provide a custom detect function to detect entities that we don't support yet.
// It takes a list of tokens and you return a list of identified types or undefined.
// The undefined types that you return should be added to the entities list if used.
detect: (tokens: string[]) => {
return tokens.map((t) =>
t === "some-sensitive-info" ? "custom-entity" : undefined
);
},

// The number of tokens to provide to the custom detect function. This defaults to 1.
// It can be used to provide additional context when detecting custom entity types.
contextWindowSize: 1,

// This allows you to provide custom replacements when redacting. Please ensure
// that the replacements are unique so that unredaction works as expected.
replace: (identifiedType: string) => {
return identifiedType === "email" ? "redacted@example.com" : undefined;
},
};

const arcjetRedact = new ArcjetRedact(arcjetRedactOptions);

const response = await arcjetRedact.invoke(
"My email address is test@example.com, here is some-sensitive-info"
);

Was this page helpful?


You can also leave detailed feedback on GitHub.