Skip to main content

LangChain integrations for Pangea

Project description

langchain-pangea

Pangea's tools for LangChain provide AI security features to protect your applications and data. Using these tools you can:

  • Defend against prompt injection attacks.
  • Prevent the exposure of sensitive information, including:
    • Personally Identifiable Information (PII)
    • Protected Health Information (PHI)
    • Financial data
    • Secrets
    • Intellectual property
    • Profanity
  • Remove malicious content from inputs and outputs, such as IP addresses, domains, and URLs.
  • Monitor user inputs and model responses to support threat analysis, auditing, and compliance efforts.

Installation

pip install -U langchain-pangea

Tools

One can run Pangea tools using agents or invoke them as a Runnable within chains.

AI Guard

import os

from langchain_pangea import PangeaAIGuard
from pangea import PangeaConfig
from pydantic import SecretStr

pangea_ai_guard_token = SecretStr(os.getenv("PANGEA_AI_GUARD_TOKEN"))
pangea_ai_guard_tool = PangeaAIGuard(
    token=pangea_ai_guard_token, config=PangeaConfig(), recipe="pangea_llm_response_guard"
)

Agent

from langgraph.prebuilt import create_react_agent
from langchain_core.tools import tool

@tool
def search_tool(data):
    """Call to perform search"""

    return """
    47.84.32.175
    37.44.238.68
    47.84.73.221
    47.236.252.254
    34.201.186.27
    52.89.173.88
    """

tools = [search_tool, pangea_ai_guard_tool]

query = """
Hi, I am Bond, James Bond. I monitor IPs found in MI6 network traffic.
Please find me the most recent ones, you copy?
"""

system_message="Always use AI Guard before your final response to keep it safe for the user."

langgraph_agent_executor = create_react_agent(model, tools, prompt=system_message)

state = langgraph_agent_executor.invoke({"messages": [("human", query)]})

Chain

from langchain_core.prompts import ChatPromptTemplate
from langchain_core.output_parsers import StrOutputParser

prompt = ChatPromptTemplate.from_messages([("human", "{input}")])

query = """
Hi, I am Bond, James Bond. I am looking for a job. Please write me a super short resume.

I am skilled in international espionage, covert operations, and seduction.

Include a contact header:
Email: j.bond@mi6.co.uk
Phone: +44 20 0700 7007
Address: Universal Exports, 85 Albert Embankment, London, United Kingdom
"""

chain = (
  prompt
  | pangea_ai_guard_tool
  | model
  | StrOutputParser()
)

Standalone

pangea_ai_guard_tool.run("Spam me at example@example.com")
pangea_ai_guard_tool.invoke("Take my SSN: 234-56-7890")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langchain_pangea-0.1.3.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langchain_pangea-0.1.3-py3-none-any.whl (18.6 kB view details)

Uploaded Python 3

File details

Details for the file langchain_pangea-0.1.3.tar.gz.

File metadata

  • Download URL: langchain_pangea-0.1.3.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for langchain_pangea-0.1.3.tar.gz
Algorithm Hash digest
SHA256 1e6756148709ab3e74d33e1aba2d4f0ae4090b787af915e481a565cddc723a22
MD5 8090ad4ac1c13b95dcd5766393650b61
BLAKE2b-256 df805caf7fa6368d88feb18e4b63e1c8909b96c949ffa02266706023a8c4754c

See more details on using hashes here.

File details

Details for the file langchain_pangea-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_pangea-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 77e80f62d6b8d16e95d68ad39f3c2fc487c6e4afc40c977f06180049a018c45c
MD5 55fff9201af3195f35040f6b9f663728
BLAKE2b-256 3518ddf1c0b4030f4a5a9dfe4bbeae00d4ce2562ad0c37b48fde6e01708e59ff

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page