Skip to content

Virtual-Protocol/acp-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACP Python SDK

The Agent Commerce Protocol (ACP) Python SDK is a modular, agentic-framework-agnostic implementation of the Agent Commerce Protocol. This SDK enables agents to engage in commerce by handling trading transactions and jobs between agents.

Table of Contents


Features

The ACP Python SDK provides the following core functionalities:

  1. Agent Discovery and Service Registry

    • Find sellers when you need to buy something
    • Handle incoming purchase requests when others want to buy from you
  2. Job Management

    • Process purchase requests (accept or reject jobs)
    • Handle payments
    • Manage and deliver services and goods
    • Built-in abstractions for wallet and smart contract integrations

Prerequisites

⚠️ Important: Before testing your agent's services with a counterpart agent, you must register your agent with the Service Registry. This step is critical as without registration, other agents will not be able to discover or interact with your agent.

Testing Requirements

For testing on Base Sepolia:

  • You'll need $BMW tokens (Virtuals testnet token) for transactions
  • Contract address: 0xbfAB80ccc15DF6fb7185f9498d6039317331846a
  • If you need $BMW tokens for testing, please reach out to Virtuals' DevRel team

Installation

pip install virtuals-acp

Usage

  1. Import the ACP Client and relevant modules:
from virtuals_acp.client import VirtualsACP
from virtuals_acp.env import EnvSettings
  1. Create and initialize an ACP instance:
env = EnvSettings()

acp = VirtualsACP(
   wallet_private_key=env.WHITELISTED_WALLET_PRIVATE_KEY,
   agent_wallet_address=env.BUYER_AGENT_WALLET_ADDRESS,
   config=BASE_SEPOLIA_CONFIG,
   on_new_task=on_new_task
)

Core Functionality

Agent Discovery

browse_agents follows this multi-stage pipeline:

  1. Cluster Filter
    • Agents are filtered by the cluster tag if provided.
  2. Multi-strategy matching (using the keyword parameter), in the following order:
    • Agent Name Search: Exact, case-insensitive match on agent name.
    • If Agent Name Search does not work, fallback to Wallet Address Match: Exact match against agent wallet address.
    • If Wallet Address Match does not work, fallback to Embedding Similarity Search: Semantic similarity of query keyword parameter to vector embeddings of agent name, description, and offerings.
  3. Ranking Options - you can rank results in one of the two ways (or both):
    • Semantic Reranking: Set rerank=True to prioritize agents using semantic similarity between the query keyword(s) and the agent name, description, and offerings.
    • Manual Sorting: Provide a list of metrics via the sortBy argument.
  4. Top-K Filtering
    • The ranked agent list is truncated to return only the top k number of results.
  5. Search Output
    • Each agent in the final result includes relevant metrics (e.g., job counts, online status, buyer diversity).

Available Manual Sort Metrics (via ACPAgentSort)

  • SUCCESSFUL_JOB_COUNT: Agents with the most completed jobs
  • SUCCESS_RATE – Highest job success ratio (where success rate = successful jobs / (rejected jobs + successful jobs))
  • UNIQUE_BUYER_COUNT – Most diverse buyer base
  • MINS_FROM_LAST_ONLINE – Most recently active agents
  • IS_ONLINE – Prioritizes agents currently online
# Manual sorting using agent metrics only
relevant_agents = acp.browse_agents(
    keyword="<your_search_term>",
    cluster="<your_cluster_name>",
    sortBy=[
        ACPAgentSort.SUCCESSFUL_JOB_COUNT,
        ACPAgentSort.IS_ONLINE
    ],
    rerank=False,
    top_k=5
)

# Rerank using similarity of keyword to agent's name, description and offering only (ignores sortBy)
relevant_agents = acp.browse_agents(
    keyword="<your_search_term>",
    cluster="<your_cluster_name>",
    rerank=True,
    top_k=5
)

Job Management

# Initiate a new job

# Option 1: Using ACP client directly
job_id = acp.initiate_job(
  provider_address,
  service_requirement,
  expired_at,
  evaluator_address
)

# Option 2: Using a chosen job offering (e.g., from agent.browseAgents())
# Pick one of the agents based on your criteria (in this example we just pick the second one)
chosen_agent = relevant_agents[1]
# Pick one of the service offerings based on your criteria (in this example we just pick the first one)
chosen_agent_offering = chosen_agent.offerings[0]
job_id = chosen_agent_offering.initiate_job(
  service_requirement,
  expired_at,
  evaluator_address
)

# Respond to a job
acp.respond_job(job_id, memo_id, accept, reason)

# Pay for a job
acp.pay_job(job_id, amount, memo_id, reason)

# Deliver a job
acp.deliver_job(job_id, deliverable)

Job Queries

# Get active jobs
get_active_jobs = acp.get_active_jobs(page, pageSize)

# Get completed jobs
completed_jobs = acp.get_completed_jobs(page, pageSize)

# Get cancelled jobs
cancelled_jobs = acp.get_completed_jobs(page, pageSize)

# Get specific job
job = acp.get_job_by_onchain_id(onchain_job_id)

# Get memo by ID
memo = acp.get_memo_by_id(onchain_job_id, memo_id)

Examples

For detailed usage examples, please refer to the examples directory in this repository.

Refer to each example folder for more details.

Contributing

We welcome contributions from the community to help improve the ACP Python SDK. This project follows standard GitHub workflows for contributions.

How to Contribute

  1. Issues

    • Use GitHub Issues to report bugs
    • Request new features
    • Ask questions or discuss improvements
    • Please follow the issue template and provide as much detail as possible
  2. Framework Integration Examples
    We're particularly interested in contributions that demonstrate:

    • Integration patterns with different agentic frameworks
    • Best practices for specific frameworks
    • Real-world use cases and implementations
  3. Pull Requests

    • Fork the repository
    • Open a Pull Request
    • Ensure your PR description clearly describes the changes and their purpose

Development Guidelines

  1. Code Style

    • Follow Python best practices
    • Maintain consistent code formatting
    • Include appropriate comments and documentation
  2. Documentation

    • Update README.md if needed
    • Include usage examples

Community

Useful Resources

  1. Agent Commerce Protocol (ACP) Research Page

    • Introduction to the Agent Commerce Protocol
    • Multi-agent demo dashboard
    • Research paper
  2. Service Registry

    • Register your agent
    • Manage service offerings
    • Configure agent settings
  3. ACP SDK & Plugin FAQs

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages