Skip to content

Commit 659be1d

Browse files
committed
fix: update README.md
1 parent b81f3a1 commit 659be1d

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# UiPath Runtime
22

33
[![PyPI downloads](https://img.shields.io/pypi/dm/uipath-runtime.svg)](https://pypi.org/project/uipath-runtime/)
4+
[![PyPI - Version](https://img.shields.io/pypi/v/uipath-runtime)](https://pypi.org/project/uipath-runtime/)
45
[![Python versions](https://img.shields.io/pypi/pyversions/uipath-runtime.svg)](https://pypi.org/project/uipath-runtime/)
6+
[![GitHub](https://img.shields.io/badge/github-uipath--runtime-blue?logo=github)](https://github.com/UiPath/uipath-python)
57

68
Runtime abstractions and contracts for the UiPath Python SDK.
79

810
## Overview
911

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.
12+
`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.
1213

1314
This package is typically used as a dependency by higher-level SDKs such as:
14-
- [`uipath`](https://pypi.org/project/uipath)
15-
- [`uipath-langchain`](https://pypi.org/project/uipath-langchain)
16-
- [`uipath-llamaindex`](https://pypi.org/project/uipath-llamaindex)
17-
- [`uipath-mcp`](https://pypi.org/project/uipath-mcp)
15+
- [`uipath`](https://github.com/uipath/uipath-python) [![PyPI](https://img.shields.io/pypi/v/uipath?label=pypi)](https://pypi.org/project/uipath/) [![Downloads](https://img.shields.io/pypi/dm/uipath?label=)](https://pypi.org/project/uipath/) [![GitHub](https://img.shields.io/github/stars/uipath/uipath-python?style=social)](https://github.com/uipath/uipath-python)
16+
- [`uipath-langchain`](https://github.com/uipath/uipath-langchain-python) [![PyPI](https://img.shields.io/pypi/v/uipath-langchain?label=pypi)](https://pypi.org/project/uipath-langchain/) [![Downloads](https://img.shields.io/pypi/dm/uipath-langchain?label=)](https://pypi.org/project/uipath-langchain/) [![GitHub](https://img.shields.io/github/stars/uipath/uipath-langchain-python?style=social)](https://github.com/uipath/uipath-langchain-python)
17+
- [`uipath-llamaindex`](https://github.com/uipath/uipath-llamaindex-python) [![PyPI](https://img.shields.io/pypi/v/uipath-llamaindex?label=pypi)](https://pypi.org/project/uipath-llamaindex/) [![Downloads](https://img.shields.io/pypi/dm/uipath-llamaindex?label=)](https://pypi.org/project/uipath-llamaindex/) [![GitHub](https://img.shields.io/github/stars/uipath/uipath-llamaindex-python?style=social)](https://github.com/uipath/uipath-llamaindex-python)
18+
- [`uipath-mcp`](https://github.com/uipath/uipath-mcp-python) [![PyPI](https://img.shields.io/pypi/v/uipath-mcp?label=pypi)](https://pypi.org/project/uipath-mcp/) [![Downloads](https://img.shields.io/pypi/dm/uipath-mcp?label=)](https://pypi.org/project/uipath-mcp/) [![GitHub](https://img.shields.io/github/stars/uipath/uipath-mcp-python?style=social)](https://github.com/uipath/uipath-mcp-python)
1819

1920
You would use this directly only if you're building custom runtime implementations.
2021

@@ -24,6 +25,10 @@ You would use this directly only if you're building custom runtime implementatio
2425
uv add uipath-runtime
2526
```
2627

28+
## Developer Tools
29+
30+
For testing and debugging your runtimes, check out [`uipath-dev`](https://github.com/UiPath/uipath-dev) - an interactive terminal application for building, testing, and debugging UiPath Python runtimes, agents, and automation scripts.
31+
2732
## Runtime Protocols
2833

2934
All runtimes implement the `UiPathRuntimeProtocol` (or one of its sub-protocols):

0 commit comments

Comments
 (0)