228afcb2f9
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
15 lines
327 B
Python
15 lines
327 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# ruff: noqa: F401
|
|
|
|
from haystack.tracing.tracer import ( # noqa: I001 (otherwise we end up with partial imports)
|
|
Span,
|
|
Tracer,
|
|
disable_tracing,
|
|
enable_tracing,
|
|
is_tracing_enabled,
|
|
tracer,
|
|
)
|