group-wbl/.venv/lib/python3.13/site-packages/langsmith/wrappers/_openai_agents.py
2026-01-09 09:12:25 +08:00

20 lines
551 B
Python

"""Tombstone module for backward compatibility.
This module has been moved to `langsmith.integrations.openai_agents`.
Imports from this location are deprecated but will continue to work.
"""
import warnings
from langsmith.integrations.openai_agents_sdk import OpenAIAgentsTracingProcessor
warnings.warn(
"langsmith.wrappers._openai_agents is deprecated and has been moved to "
"langsmith.integrations.openai_agents_sdk. Please update your imports.",
DeprecationWarning,
stacklevel=2,
)
__all__ = ["OpenAIAgentsTracingProcessor"]