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 46d0852 commit ac78c1cCopy full SHA for ac78c1c
src/openlayer/lib/integrations/__init__.py
@@ -1,5 +1,6 @@
1
-"""Openlayer integrations with various AI/ML frameworks."""
+"""Integrations for Openlayer."""
2
3
+# Core integrations that are always available
4
__all__ = []
5
6
# Optional imports - only import if dependencies are available
@@ -10,7 +11,7 @@
10
11
pass
12
13
try:
- from .openai_agents import OpenAIAgentsTracingProcessor, FileSpanExporter
14
- __all__.extend(["OpenAIAgentsTracingProcessor", "FileSpanExporter"])
+ from .openai_agents import OpenlayerTracerProcessor
15
+ __all__.extend(["OpenlayerTracerProcessor"])
16
except ImportError:
17
0 commit comments