Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.1.27"
version = "2.1.28"
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
Expand Down
17 changes: 15 additions & 2 deletions src/uipath/tracing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
from ._otel_exporters import LlmOpsHttpExporter # noqa: D104
from ._otel_exporters import ( # noqa: D104
BaseSpanProcessor,
JsonFileExporter,
LlmOpsHttpExporter,
SqliteExporter,
)
from ._traced import TracingManager, traced, wait_for_tracers # noqa: D104

__all__ = ["TracingManager", "traced", "wait_for_tracers", "LlmOpsHttpExporter"]
__all__ = [
"TracingManager",
"traced",
"wait_for_tracers",
"LlmOpsHttpExporter",
"BaseSpanProcessor",
"JsonFileExporter",
"SqliteExporter",
]
Loading
Loading