Skip to content

Commit c632ca5

Browse files
committed
fix up readme
1 parent 60da4e3 commit c632ca5

2 files changed

Lines changed: 10 additions & 451 deletions

File tree

integrations/adk-py/README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# braintrust-adk (DEPRECATED)
22

3+
SDK for integrating [Braintrust](https://braintrust.dev) with [Google ADK (Agent Development Kit)](https://github.com/google/adk-python). This package provides automatic tracing and logging of ADK agent executions to Braintrust.
4+
35
> **This package is deprecated.** The Google ADK integration is now included in the main [`braintrust`](https://pypi.org/project/braintrust/) package.
46
57
## Migration
@@ -14,22 +16,19 @@
1416
# Before
1517
from braintrust_adk import setup_adk
1618

17-
# After (option 1: explicit)
18-
from braintrust.wrappers.adk import setup_adk
19-
20-
# After (option 2: auto-instrument everything)
19+
# After (option 1: auto-instrument adk library)
2120
import braintrust
2221
braintrust.auto_instrument()
22+
23+
# After (option 2: explicit)
24+
from braintrust.wrappers.adk import setup_adk
25+
setup_adk()
2326
```
2427

2528
The API is identical - no code changes needed beyond the import path.
2629

2730
---
2831

29-
## Original README
30-
31-
SDK for integrating [Braintrust](https://braintrust.dev) with [Google ADK (Agent Development Kit)](https://github.com/google/adk-python). This package provides automatic tracing and logging of ADK agent executions to Braintrust.
32-
3332
## Installation
3433

3534
```bash

0 commit comments

Comments
 (0)