File size: 380 Bytes
bde2f3a | 1 2 3 4 5 6 7 8 9 10 11 12 | """x402 AI Framework Integrations — pay-per-call for any agent framework.
LangChain, CrewAI, AutoGen, and any Python framework that calls tools.
One pattern: wrap a tool call → deduct credits → execute → return.
pip install x402-frameworks
"""
from .langchain_adapter import x402LangChain
from .crewai_adapter import x402CrewAI
from .autogen_adapter import x402AutoGen
|