Files
post_crawler/.venv/Lib/site-packages/langsmith/wrappers/_openai_agents.py
T
2026-05-26 21:02:17 +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"]