You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integrations/adk-py/README.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# braintrust-adk (DEPRECATED)
2
2
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
+
3
5
> **This package is deprecated.** The Google ADK integration is now included in the main [`braintrust`](https://pypi.org/project/braintrust/) package.
4
6
5
7
## Migration
@@ -14,22 +16,19 @@
14
16
# Before
15
17
from braintrust_adk import setup_adk
16
18
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)
21
20
import braintrust
22
21
braintrust.auto_instrument()
22
+
23
+
# After (option 2: explicit)
24
+
from braintrust.wrappers.adk import setup_adk
25
+
setup_adk()
23
26
```
24
27
25
28
The API is identical - no code changes needed beyond the import path.
26
29
27
30
---
28
31
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.
0 commit comments