Coverage for langsmith/wrappers/_openai_agents.py: 100%
4 statements
« prev ^ index » next coverage.py v7.10.1, created at 2025-12-11 16:15 -0800
« prev ^ index » next coverage.py v7.10.1, created at 2025-12-11 16:15 -0800
1"""Tombstone module for backward compatibility.
3This module has been moved to `langsmith.integrations.openai_agents`.
5Imports from this location are deprecated but will continue to work.
6"""
8import warnings
10from langsmith.integrations.openai_agents_sdk import OpenAIAgentsTracingProcessor
12warnings.warn(
13 "langsmith.wrappers._openai_agents is deprecated and has been moved to "
14 "langsmith.integrations.openai_agents_sdk. Please update your imports.",
15 DeprecationWarning,
16 stacklevel=2,
17)
19__all__ = ["OpenAIAgentsTracingProcessor"]