Skip to content

Commit dcdb9a1

Browse files
chore: bump uipath-runtime to >=0.11.0 across integrations (#353)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent bb2385d commit dcdb9a1

11 files changed

Lines changed: 88 additions & 80 deletions

File tree

packages/uipath-agent-framework/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-agent-framework"
3-
version = "0.0.12"
3+
version = "0.0.13"
44
description = "Python SDK that enables developers to build and deploy Microsoft Agent Framework agents to the UiPath Cloud Platform"
55
readme = "README.md"
66
requires-python = ">=3.11"
@@ -10,7 +10,7 @@ dependencies = [
1010
"aiosqlite>=0.20.0",
1111
"openinference-instrumentation-agent-framework>=0.1.0",
1212
"uipath>=2.10.0, <2.11.0",
13-
"uipath-runtime>=0.10.0, <0.11.0",
13+
"uipath-runtime>=0.11.0, <0.12.0",
1414
]
1515
classifiers = [
1616
"Intended Audience :: Developers",

packages/uipath-agent-framework/tests/test_hitl_e2e.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ def __init__(self, auto_approve: bool = True):
7171
self.auto_approve = auto_approve
7272
self.interrupts: list[UiPathResumeTrigger] = []
7373
self.messages: list[Any] = []
74+
self.executing_tool_calls: list[tuple[str, dict[str, Any] | None]] = []
7475

7576
async def connect(self) -> None:
7677
pass
@@ -84,6 +85,13 @@ async def emit_message_event(self, message_event: Any) -> None:
8485
async def emit_interrupt_event(self, resume_trigger: UiPathResumeTrigger) -> None:
8586
self.interrupts.append(resume_trigger)
8687

88+
async def emit_executing_tool_call_event(
89+
self,
90+
tool_call_id: str,
91+
tool_input: dict[str, Any] | None = None,
92+
) -> None:
93+
self.executing_tool_calls.append((tool_call_id, tool_input))
94+
8795
async def emit_exchange_end_event(self) -> None:
8896
pass
8997

packages/uipath-agent-framework/uv.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/uipath-google-adk/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[project]
22
name = "uipath-google-adk"
3-
version = "0.0.7"
3+
version = "0.0.8"
44
description = "Python SDK that enables developers to build and deploy Google ADK agents to the UiPath Cloud Platform"
55
readme = "README.md"
66
requires-python = ">=3.11"
77
dependencies = [
88
"google-adk>=1.25.1",
99
"openinference-instrumentation-google-adk>=0.1.9",
1010
"uipath>=2.10.0, <2.11.0",
11-
"uipath-runtime>=0.10.0, <0.11.0",
11+
"uipath-runtime>=0.11.0, <0.12.0",
1212
]
1313
classifiers = [
1414
"Intended Audience :: Developers",

packages/uipath-google-adk/uv.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/uipath-llamaindex/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-llamaindex"
3-
version = "0.5.13"
3+
version = "0.5.14"
44
description = "Python SDK that enables developers to build and deploy LlamaIndex agents to the UiPath Cloud Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"
@@ -12,7 +12,7 @@ dependencies = [
1212
"llama-index-llms-azure-openai>=0.4.2",
1313
"openinference-instrumentation-llama-index>=4.3.9",
1414
"uipath>=2.10.0, <2.11.0",
15-
"uipath-runtime>=0.10.0, <0.11.0",
15+
"uipath-runtime>=0.11.0, <0.12.0",
1616
]
1717
classifiers = [
1818
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)