Skip to content

Commit 71b2ded

Browse files
authored
Merge pull request #33 from UiPath/fix/update_readme
fix: update README.md
2 parents b81f3a1 + cb1d759 commit 71b2ded

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
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/)
56

67
Runtime abstractions and contracts for the UiPath Python SDK.
78

89
## Overview
910

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.
1212

1313
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)
14+
- [`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)
15+
- [`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)
16+
- [`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)
17+
- [`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)
1818

1919
You would use this directly only if you're building custom runtime implementations.
2020

@@ -24,6 +24,10 @@ You would use this directly only if you're building custom runtime implementatio
2424
uv add uipath-runtime
2525
```
2626

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+
2731
## Runtime Protocols
2832

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

0 commit comments

Comments
 (0)