Metadata-Version: 2.4
Name: turingpulse-sdk-google-adk
Version: 1.4.0
Summary: TuringPulse SDK integration for Google Agent Development Kit
Project-URL: Homepage, https://turingpulse.ai
Project-URL: Documentation, https://turingpulse.ai/docs/sdk/google-adk
License-Expression: LicenseRef-Proprietary
Requires-Python: >=3.11
Requires-Dist: google-adk>=1.25.0
Requires-Dist: turingpulse-sdk>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# turingpulse-sdk-google-adk

TuringPulse SDK integration for Google Agent Development Kit (ADK).

## Installation

```bash
pip install turingpulse-sdk-google-adk
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_google_adk import instrument_google_adk

init(TuringPulseConfig(api_key="sk_live_...", workflow_name="my-project"))

run = instrument_google_adk(agent, name="my-google-adk-workflow")
result = await run("Process this request")
```

## Documentation

Full documentation: [turingpulse.ai/docs/sdk/google-adk](https://turingpulse.ai/docs/sdk/google-adk)

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- google-adk >= 1.25.0
