Metadata-Version: 2.4
Name: acp-sdk
Version: 0.3.2
Summary: Agent Communication Protocol SDK
Author: IBM Corp.
Maintainer-email: Tomas Pilar <thomas7pilar@gmail.com>
License-Expression: Apache-2.0
Requires-Python: <4.0,>=3.11
Requires-Dist: fastapi[standard]>=0.115.8
Requires-Dist: httpx-sse>=0.4.0
Requires-Dist: httpx>=0.28.1
Requires-Dist: janus>=2.0.0
Requires-Dist: opentelemetry-api>=1.31.1
Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.31.1
Requires-Dist: opentelemetry-instrumentation-fastapi>=0.52b1
Requires-Dist: opentelemetry-instrumentation-httpx>=0.52b1
Requires-Dist: opentelemetry-sdk>=1.31.1
Requires-Dist: pydantic>=2.11.1
Description-Content-Type: text/markdown

# Agent Communication Protocol SDK for Python

Agent Communication Protocol SDK for Python provides allows developers to serve and consume agents over the Agent Communication Protocol.

## Prerequisites

✅ Python >= 3.11

## Installation

Install with:

```shell
pip install acp-sdk
```

## Overview

### Core

The core of the SDK exposes [pydantic](https://docs.pydantic.dev/) data models corresponding to REST API requests, responses, resources, events and errors.


### Client

The `client` submodule exposes [httpx](https://www.python-httpx.org/) based client with simple methods for communication over ACP.

```python
async with Client(base_url="http://localhost:8000") as client:
    run = await client.run_sync(agent="echo", inputs=[Message(parts=[MessagePart(content="Howdy!")])])
    print(run)

```

### Server

The `server` submodule exposes `Agent` class and `agent` decorator together with [fastapi](https://fastapi.tiangolo.com/) application factory, making it easy to expose agents over ACP. Additionaly, it exposes [uvicorn](https://www.uvicorn.org/) based server to serve agents with set up logging, [opentelemetry](https://opentelemetry.io/) and more.

```python
server = Server()

@server.agent()
async def echo(inputs: list[Message], context: Context) -> AsyncGenerator[RunYield, RunYieldResume]:
    """Echoes everything"""
    for message in inputs:
        yield {"thought": "I should echo everyting"}
        await asyncio.sleep(0.5)
        yield message


server.run()
```

➡️ Explore more in our [examples library](/python/examples).

## Architecture

The architecture of the SDK is outlined in the following segment. It focuses on central parts of the SDK without going into much detail.

### Models

The core of the SDK contains pydantic models for requests, responses, resources, events and errors. Users of the SDK are meant to use these models directly or indirectly.

### Server

The server module consists of 3 parts:
  
  1. Agent interface
  2. FastAPI application factory
  3. Uvicorn based server

Each part builds on top of the previous one. Not all parts need to be used, e.g. users are advised to bring their own ASGI server for production deployments.

### Client

The client module consists of httpx based client with session support. The client is meant to be thin and mimic the REST API. Exception is session management which has been abstracted into a context manager.


  