Skip to content

Commit da53c53

Browse files
viniciusdsmellogustavocidornelas
authored andcommitted
feat: adds openai agents sdk trace processor
1 parent f4feadf commit da53c53

File tree

2 files changed

+618
-0
lines changed

2 files changed

+618
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
try:
13+
from .openai_agents import OpenAIAgentsTracingProcessor, FileSpanExporter
14+
__all__.extend(["OpenAIAgentsTracingProcessor", "FileSpanExporter"])
15+
except ImportError:
16+
pass

0 commit comments

Comments
 (0)