Skip to main content

LangChain integration for the 402fly payment protocol

Project description

402fly-langchain

LangChain integration for the X402 payment protocol - enables AI agents to autonomously pay for API access.

Overview

The 402fly-langchain package provides LangChain tools and utilities that enable AI agents to autonomously make payments to access paid APIs using the X402 protocol. Agents can detect payment requirements, process payments, and retry requests automatically.

Features

  • Autonomous payment capability for LangChain agents
  • X402 payment tool for LangChain agent workflows
  • Helper functions for quick agent creation
  • Configurable payment limits for safety
  • Seamless integration with existing LangChain applications

Installation

pip install 402fly-langchain

Quick Start

Simple Agent with Autonomous Payment

The easiest way to create an X402-enabled agent:

from 402fly_langchain import create_x402_agent
from langchain_openai import ChatOpenAI
from solders.keypair import Keypair
import json

# Load wallet
with open("wallet.json") as f:
    wallet_data = json.load(f)
    keypair = Keypair.from_bytes(bytes(wallet_data))

# Create agent with X402 support in one function call
agent = create_x402_agent(
    wallet_keypair=keypair,
    llm=ChatOpenAI(temperature=0),
    max_payment="5.0",  # Safety limit
    debug=True,
)

# Agent can now autonomously pay for API access
inputs = {
    "messages": [
        {
            "role": "user",
            "content": "Get the premium data from http://localhost:8000/premium-data"
        }
    ]
}

for chunk in agent.stream(inputs, stream_mode="updates"):
    if "agent" in chunk:
        result = chunk["agent"]

if result and "messages" in result:
    final_message = result["messages"][-1]
    print(f"Agent response: {final_message.content}")

Usage Patterns

Pattern 1: Quick Agent Creation (Recommended)

Best for most use cases - creates a fully configured agent:

from 402fly_langchain import create_x402_agent
from langchain_openai import ChatOpenAI
from solders.keypair import Keypair

keypair = Keypair()  # Your wallet

agent = create_x402_agent(
    wallet_keypair=keypair,
    llm=ChatOpenAI(temperature=0),
    max_payment="10.0",
    debug=True,
)

# Use the agent
result = agent.invoke({
    "messages": [
        {"role": "user", "content": "Access paid APIs"}
    ]
})

Pattern 2: Custom Agent with Payment Tool

For custom agent configurations:

from 402fly_langchain import X402PaymentTool
from langchain.agents import create_agent
from langchain_openai import ChatOpenAI
from solders.keypair import Keypair

keypair = Keypair()

# Create X402 payment tool
payment_tool = X402PaymentTool(
    wallet_keypair=keypair,
    max_payment="5.0",
    name="pay_for_api",
    description="Make payment to access premium API data"
)

# Create custom agent with your tools
agent = create_agent(
    model=ChatOpenAI(temperature=0),
    tools=[payment_tool, *other_tools],
    system_prompt="Your custom system prompt",
)

Pattern 3: Multi-API Access

Agent accessing multiple paid APIs:

from 402fly_langchain import create_x402_agent
from langchain_openai import ChatOpenAI
from solders.keypair import Keypair

keypair = Keypair()

agent = create_x402_agent(
    wallet_keypair=keypair,
    llm=ChatOpenAI(temperature=0),
    max_payment="10.0",  # Higher limit for multiple payments
    debug=True,
)

inputs = {
    "messages": [
        {
            "role": "user",
            "content": "Get data from both /premium-data and /expensive-data APIs, then compare them"
        }
    ]
}

result = agent.invoke(inputs)

Complete Example

from 402fly_langchain import (
    create_x402_agent,
    X402PaymentTool,
)
from langchain_openai import ChatOpenAI
from solders.keypair import Keypair
import json
import os

# Load wallet keypair
with open("wallet.json") as f:
    wallet_data = json.load(f)
    keypair = Keypair.from_bytes(bytes(wallet_data))

# Create X402-enabled agent
agent = create_x402_agent(
    wallet_keypair=keypair,
    llm=ChatOpenAI(
        temperature=0,
        api_key=os.getenv("OPENAI_API_KEY")
    ),
    max_payment="5.0",
    debug=True,
)

# Run agent
inputs = {
    "messages": [
        {
            "role": "user",
            "content": "Get premium market data from http://localhost:8000/premium-data and summarize it"
        }
    ]
}

for chunk in agent.stream(inputs, stream_mode="updates"):
    if "agent" in chunk:
        result = chunk["agent"]
        if "messages" in result:
            print(result["messages"][-1].content)

Configuration

create_x402_agent Parameters

  • wallet_keypair: Your Solana wallet keypair for payments (required)
  • llm: LangChain LLM instance (required)
  • max_payment: Maximum payment amount - safety limit (required)
  • debug: Enable debug logging (optional)

X402PaymentTool Parameters

  • wallet_keypair: Your Solana wallet keypair
  • max_payment: Maximum payment limit
  • name: Tool name for agent (default: "x402_payment")
  • description: Tool description for agent

Wallet Setup

import json
from solders.keypair import Keypair

# Create new wallet
keypair = Keypair()
wallet_data = list(bytes(keypair))
with open("wallet.json", "w") as f:
    json.dump(wallet_data, f)

print(f"Wallet address: {keypair.pubkey()}")
print("Fund this wallet with SOL and USDC on devnet!")

Documentation

For complete API reference and guides, see:

Testing

pytest tests/

License

MIT License - See LICENSE file for details.

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

fly402langchain-0.1.1.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

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

fly402langchain-0.1.1-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file fly402langchain-0.1.1.tar.gz.

File metadata

  • Download URL: fly402langchain-0.1.1.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for fly402langchain-0.1.1.tar.gz
Algorithm Hash digest
SHA256 7f61408226f913e22c4fa8c2aa931e176cb884b478a6e38f2074c08f057b3622
MD5 2e36a23cb04847c28eb9dd47ad72b2dd
BLAKE2b-256 806f6874d82ee7808e28547f77dd604e9378b1403f18fd848de7892e6a705587

See more details on using hashes here.

File details

Details for the file fly402langchain-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for fly402langchain-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2ffb84f3084d744eb3e58f6fd15fda05f8e007964c7b2565d1617cbf18865e34
MD5 40f08ce6569259a75e421be0b7424fdf
BLAKE2b-256 6ffad4a4b7de82a62e87c8d4c2a22d2e0018aa64bd5f6aa75489ec35e184f7a7

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