LangChain integration for Ampersend x402 payments
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
langchain-ampersend
LangChain integration for Ampersend x402 payments. Call remote A2A agents with automatic payment handling.
Installation
pip install langchain-ampersend
Usage
from langchain_ampersend import (
A2AToolkit,
AmpersendTreasurer,
ApiClient,
ApiClientOptions,
SmartAccountWallet,
)
from langchain.agents import create_agent
from langchain_openai import ChatOpenAI
# Setup Ampersend API client
api_client = ApiClient(ApiClientOptions(
base_url="https://api.ampersend.ai",
session_key_private_key="0x...", # Your session key
))
# Setup wallet (smart account)
wallet = SmartAccountWallet(
owner_private_key="0x...",
smart_account_address="0x...",
)
# Create treasurer
treasurer = AmpersendTreasurer(api_client=api_client, wallet=wallet)
# Create toolkit for a remote agent
toolkit = A2AToolkit(
remote_agent_url="https://agent.example.com",
treasurer=treasurer,
)
# Initialize (discovers the agent)
await toolkit.initialize()
# Use with LangGraph
llm = ChatOpenAI(model="gpt-4")
agent = create_agent(llm, toolkit.get_tools())
# Run
result = await agent.ainvoke({"messages": [("user", "Query some data")]})
Tools
The toolkit provides two tools:
a2a_get_agent_details- Get the capabilities and skills of the remote agenta2a_send_message- Send a message to the remote agent (payments handled automatically)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langchain_ampersend_ai-0.0.2.tar.gz.
File metadata
- Download URL: langchain_ampersend_ai-0.0.2.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f41a89df6f12ced8b9856940ad8feb12e83d9bd1531778c00490e816eefd1f55
|
|
| MD5 |
10b3a60873fbf02131fc6f5368131a21
|
|
| BLAKE2b-256 |
864c02c7ca1ecbf9b282d38dd01603a0a229c41c3757e1949bb63948cbf7461c
|
File details
Details for the file langchain_ampersend_ai-0.0.2-py3-none-any.whl.
File metadata
- Download URL: langchain_ampersend_ai-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
013c8c06b1d2e118a6989f143774541bc1744a8c33f7792c4116fdc3ff738663
|
|
| MD5 |
19624da589e08b19e9d50fdd469ece6b
|
|
| BLAKE2b-256 |
d494852cee2818ce9d858bc23af00ea68e48c35f746062f3bfacc91c971e9076
|