Metadata-Version: 2.4
Name: agentic-layer-sdk-adk
Version: 0.3.2
Requires-Python: >=3.12
Requires-Dist: google-adk[a2a]
Requires-Dist: litellm
Requires-Dist: openinference-instrumentation-google-adk
Requires-Dist: opentelemetry-exporter-otlp-proto-http
Requires-Dist: opentelemetry-instrumentation-httpx
Requires-Dist: opentelemetry-instrumentation-starlette
Description-Content-Type: text/markdown

# Agentic Layer Python SDK for Google ADK

SDK for Google ADK that helps to get agents configured in the Agentic Layer quickly.

## Features

- Configures OTEL (Tracing, Metrics, Logging)
- Converts an ADK agent into an instrumented starlette app with health endpoint
- Set log level via env var `LOGLEVEL` (default: `INFO`)

## Usage

Dependencies can be installed via pip or the tool of your choice:

```shell
pip install agentic-layer-sdk-adk
```

Basic usage example:

```python
from agenticlayer.agent_to_a2a import to_a2a

root_agent = ...  # Your ADK agent here

app = to_a2a(root_agent)
```
