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.
Migration
Update your installation and imports:
# 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.
Source Code
For the complete source code and additional examples, visit the Braintrust Python SDK repository.