Spaces:
Sleeping
Sleeping
File size: 789 Bytes
116524e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | """Kayba tracing — instrument your agents and send traces to Kayba.
This module re-exports from the standalone ``kayba-tracing`` package.
Both import paths are supported::
# Standalone package
from kayba_tracing import configure, trace, start_span
# Via ace-framework
from ace.tracing import configure, trace, start_span
Requires the ``tracing`` extra::
pip install ace-framework[tracing]
"""
from kayba_tracing import (
configure,
disable,
enable,
get_folder,
get_trace,
search_traces,
set_folder,
start_span,
trace,
)
__all__ = [
"configure",
"disable",
"enable",
"get_folder",
"get_trace",
"search_traces",
"set_folder",
"start_span",
"trace",
]
|