We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4feadf commit da53c53Copy full SHA for da53c53
src/openlayer/lib/integrations/__init__.py
@@ -0,0 +1,16 @@
1
+"""Openlayer integrations with various AI/ML frameworks."""
2
+
3
+__all__ = []
4
5
+# Optional imports - only import if dependencies are available
6
+try:
7
+ from .langchain_callback import OpenlayerHandler
8
+ __all__.append("OpenlayerHandler")
9
+except ImportError:
10
+ pass
11
12
13
+ from .openai_agents import OpenAIAgentsTracingProcessor, FileSpanExporter
14
+ __all__.extend(["OpenAIAgentsTracingProcessor", "FileSpanExporter"])
15
16
0 commit comments