Registry / llm-agents / deepagents-acp

deepagents-acp

JSON →
library0.0.6pypypi✓ verified 82d ago

Agent Client Protocol (ACP) integration for Deep Agents, enabling remote agent execution and monitoring via the ACP specification. Currently at version 0.0.6, pre-release stage with rapid iteration.

pip install deepagents-acp
INSTALL
IMPORT
SIG · DEEPAGENTS-ACP
D
deepagents-acp
llm-agentspythonv0.0.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ACPServer
import deepagents_acp
from deepagents_acp import ACPServer

Basic usage: define an agent and execute it via ACP client.

import os from deepagents import Agent from deepagents_acp import ACPClient # Create an agent (e.g., using OpenAI) agent = Agent( name="my-agent", instructions="You are a helpful assistant.", model="openai/gpt-4o" ) # Connect to a remote ACP server client = ACPClient(base_url=os.environ.get("ACP_SERVER_URL", "http://localhost:8000")) # Execute a task result = client.run(agent=agent, input="Hello, world!") print(result)
Debug
Known issues
gotchaACPClient.run() does not support streaming responses in current version; use .run_stream() for streaming.
fix
Use client.run_stream(agent, input) to receive streaming events.
affects: <=0.0.6
breakingThe ACP protocol version is tightly coupled to deepagents version; mismatched versions cause connection errors.
fix
Ensure deepagents and deepagents-acp are installed from the same release (e.g., both 0.5.8+).
affects: all
deprecatedThe old `from deepagents_acp.server import ACP` import path is deprecated and will be removed in v0.1.0.
fix
Use `from deepagents_acp import ACPServer` instead.
affects: >=0.0.4, <0.1.0
Upgrade
Version history
0.0.6latest on PyPI · released Apr 18, 2026
Audit
Dependencies
deepagentsrequiredCore Deep Agents framework required for agent definitions and orchestration
httpxrequiredHTTP client for ACP protocol communication
pydanticrequiredData validation and settings management
Agent activity
19 hits · last 30 days
node
16
Amazon
1
Bingbot
1
OpenAI (training)
1
Resources
deepagents-acp — pip install deepagents-acp · libregistry