Skip to content

Commit 08b78cd

Browse files
feat(closes OPEN-7119): add Google ADK tracing integration with Openlayer
1 parent 22c83a5 commit 08b78cd

File tree

2 files changed

+886
-0
lines changed

2 files changed

+886
-0
lines changed

src/openlayer/lib/integrations/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,10 @@
2424
__all__.extend(["trace_oci_genai"])
2525
except ImportError:
2626
pass
27+
28+
try:
29+
from .google_adk_tracer import trace_google_adk, unpatch_google_adk
30+
31+
__all__.extend(["trace_google_adk", "unpatch_google_adk"])
32+
except ImportError:
33+
pass

0 commit comments

Comments
 (0)