group-wbl/.venv/lib/python3.13/site-packages/langsmith/wrappers/_openai_agents.py

20 lines
551 B
Python
Raw Permalink Normal View History

2026-01-09 09:48:03 +08:00
"""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"]