You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Runtime abstractions and contracts for the UiPath Python SDK.
7
8
8
9
## Overview
9
10
10
-
`uipath-runtime` provides the foundational interfaces and base contracts for building agent runtimes in the UiPath ecosystem.
11
-
It defines the protocols that all runtime implementations must follow and provides utilities for execution context, event streaming, tracing, and structured error handling.
11
+
`uipath-runtime` provides the foundational interfaces and base contracts for building agent runtimes in the UiPath ecosystem. It defines the protocols that all runtime implementations must follow and provides utilities for execution context, event streaming, tracing, structured error handling, durable execution, and human-in-the-loop interactions.
12
12
13
13
This package is typically used as a dependency by higher-level SDKs such as:
You would use this directly only if you're building custom runtime implementations.
20
20
@@ -24,6 +24,10 @@ You would use this directly only if you're building custom runtime implementatio
24
24
uv add uipath-runtime
25
25
```
26
26
27
+
## Developer Tools
28
+
29
+
For testing and debugging your runtimes, check out [`uipath-dev`](https://github.com/uipath/uipath-dev-python) - an interactive terminal application for building, testing, and debugging UiPath Python runtimes, agents, and automation scripts.
30
+
27
31
## Runtime Protocols
28
32
29
33
All runtimes implement the `UiPathRuntimeProtocol` (or one of its sub-protocols):
0 commit comments