> ## Documentation Index
> Fetch the complete documentation index at: https://braintrust.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Google ADK Integration

> Braintrust integration for Google ADK v0.4.0 (deprecated)

<Warning>
  The `braintrust-adk` package has been deprecated. The Google ADK integration is now included in the main `braintrust` package. Please use `pip install braintrust` instead.
</Warning>

## Migration

Update your installation and imports:

```bash theme={"theme":{"light":"github-light","dark":"github-dark-dimmed"}}
pip install braintrust
```

```python theme={"theme":{"light":"github-light","dark":"github-dark-dimmed"}}
# Before (deprecated)
from braintrust_adk import setup_adk

# After (option 1: auto-instrument)
import braintrust
braintrust.auto_instrument()

# After (option 2: explicit)
from braintrust.wrappers.adk import setup_adk
setup_adk()
```

For the full integration guide, see [Google ADK integration](/integrations/agent-frameworks/google).

## Source Code

For the complete source code and additional examples, visit the [Braintrust Python SDK repository](https://github.com/braintrustdata/braintrust-sdk-python).
