Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions packages/uipath-agent-framework/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath-agent-framework"
version = "0.0.12"
version = "0.0.13"
description = "Python SDK that enables developers to build and deploy Microsoft Agent Framework agents to the UiPath Cloud Platform"
readme = "README.md"
requires-python = ">=3.11"
Expand All @@ -10,7 +10,7 @@ dependencies = [
"aiosqlite>=0.20.0",
"openinference-instrumentation-agent-framework>=0.1.0",
"uipath>=2.10.0, <2.11.0",
"uipath-runtime>=0.10.0, <0.11.0",
"uipath-runtime>=0.11.0, <0.12.0",
]
classifiers = [
"Intended Audience :: Developers",
Expand Down
8 changes: 8 additions & 0 deletions packages/uipath-agent-framework/tests/test_hitl_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def __init__(self, auto_approve: bool = True):
self.auto_approve = auto_approve
self.interrupts: list[UiPathResumeTrigger] = []
self.messages: list[Any] = []
self.executing_tool_calls: list[tuple[str, dict[str, Any] | None]] = []

async def connect(self) -> None:
pass
Expand All @@ -84,6 +85,13 @@ async def emit_message_event(self, message_event: Any) -> None:
async def emit_interrupt_event(self, resume_trigger: UiPathResumeTrigger) -> None:
self.interrupts.append(resume_trigger)

async def emit_executing_tool_call_event(
self,
tool_call_id: str,
tool_input: dict[str, Any] | None = None,
) -> None:
self.executing_tool_calls.append((tool_call_id, tool_input))

async def emit_exchange_end_event(self) -> None:
pass

Expand Down
28 changes: 14 additions & 14 deletions packages/uipath-agent-framework/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/uipath-google-adk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[project]
name = "uipath-google-adk"
version = "0.0.7"
version = "0.0.8"
description = "Python SDK that enables developers to build and deploy Google ADK agents to the UiPath Cloud Platform"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"google-adk>=1.25.1",
"openinference-instrumentation-google-adk>=0.1.9",
"uipath>=2.10.0, <2.11.0",
"uipath-runtime>=0.10.0, <0.11.0",
"uipath-runtime>=0.11.0, <0.12.0",
]
classifiers = [
"Intended Audience :: Developers",
Expand Down
28 changes: 14 additions & 14 deletions packages/uipath-google-adk/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/uipath-llamaindex/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath-llamaindex"
version = "0.5.13"
version = "0.5.14"
description = "Python SDK that enables developers to build and deploy LlamaIndex agents to the UiPath Cloud Platform"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
Expand All @@ -12,7 +12,7 @@ dependencies = [
"llama-index-llms-azure-openai>=0.4.2",
"openinference-instrumentation-llama-index>=4.3.9",
"uipath>=2.10.0, <2.11.0",
"uipath-runtime>=0.10.0, <0.11.0",
"uipath-runtime>=0.11.0, <0.12.0",
]
classifiers = [
"Intended Audience :: Developers",
Expand Down
Loading
Loading