Skip to main content

AsterPay payment component for AutoGPT and AgentGPT - Enable AI agents to make x402 payments

Project description

AsterPay AutoGPT/AgentGPT Integration

Payment capabilities for autonomous AI agents.

PyPI Python

Overview

asterpay-autogpt provides payment tools for AI agent frameworks:

  • AutoGPT - Component-based architecture support
  • AgentGPT - Generic tool interface
  • Any Framework - OpenAI function calling format

Installation

pip install asterpay-autogpt

Quick Start

AutoGPT Component

from autogpt.agents import Agent
from asterpay_autogpt import AsterPayComponent

class PaymentAgent(Agent):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.asterpay = AsterPayComponent(
            private_key=os.environ["AGENT_PRIVATE_KEY"],
            network="base",
            daily_limit=10.0,
            max_auto_pay=0.50,
        )

Generic Tools (Any Framework)

from asterpay_autogpt import AsterPayTools

tools = AsterPayTools(
    private_key=os.environ["AGENT_KEY"],
    daily_limit=10.0,
)

# Check balance
balance = await tools.check_balance()
print(f"Balance: {balance}")

# Access paid API
result = await tools.paid_fetch("https://api.paid-service.com/data")
print(f"Data: {result['data']}")

# Make payment
payment = await tools.make_payment(
    recipient="0x...",
    amount=5.00,
    memo="Service payment"
)

OpenAI Function Calling

from asterpay_autogpt import AsterPayTools
import openai

tools = AsterPayTools(private_key=os.environ["KEY"])

# Get function definitions
functions = tools.get_openai_function_definitions()

# Use with OpenAI
response = openai.chat.completions.create(
    model="gpt-4",
    messages=[{"role": "user", "content": "Check my wallet balance"}],
    tools=functions,
)

# Execute function call
if response.choices[0].message.tool_calls:
    call = response.choices[0].message.tool_calls[0]
    result = await tools.execute_function(
        call.function.name,
        json.loads(call.function.arguments)
    )

Available Commands

Command Description
asterpay_balance Check wallet USDC balance
asterpay_spending View spending against limits
asterpay_fetch Fetch URLs with automatic x402 payment
asterpay_pay Make direct USDC payments
asterpay_transactions View payment history

Spending Limits

Protect your agent with configurable limits:

AsterPayComponent(
    private_key=key,
    per_transaction_limit=2.0,  # Max $2 per transaction
    hourly_limit=5.0,           # Max $5/hour
    daily_limit=25.0,           # Max $25/day
    monthly_limit=200.0,        # Max $200/month
    max_auto_pay=0.50,          # Max auto-pay for x402
)

Networks

Network Chain ID Use Case
base 8453 Production (recommended)
base-sepolia 84532 Testing
polygon 137 Alternative L2
arbitrum 42161 Alternative L2

Environment Variables

# Required
AGENT_PRIVATE_KEY=0x...

# Optional
ASTERPAY_NETWORK=base
ASTERPAY_DAILY_LIMIT=10.0

Security

  1. Never hardcode private keys
  2. Set appropriate spending limits
  3. Use testnet for development
  4. Monitor agent transactions

Links

License

MIT License

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

asterpay_autogpt-1.0.0.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

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

asterpay_autogpt-1.0.0-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file asterpay_autogpt-1.0.0.tar.gz.

File metadata

  • Download URL: asterpay_autogpt-1.0.0.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for asterpay_autogpt-1.0.0.tar.gz
Algorithm Hash digest
SHA256 2a56d6c85aab137aea01251b57182a7840c5cafc02afe6829b614ece36325a4a
MD5 943c0e04b8c9eae7bc0f7b9d7b45fbf1
BLAKE2b-256 24f7056874384e8316eb76dbdf1c9940942d25ec046b295890807a272a479f63

See more details on using hashes here.

File details

Details for the file asterpay_autogpt-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for asterpay_autogpt-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7a43c0f40eee41a90a0e9cdf2956be1702247beb114b9a21bb4a2fdb2d44e2b6
MD5 eb0bfd710fcc497afd6988da188b73ac
BLAKE2b-256 eaa32b9f26f0049ef152013123cafdf0b174a5b558cadb39c2ab3e896c70909f

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