From 03421f883d79513bce8daa368f674bb3b43ca204 Mon Sep 17 00:00:00 2001 From: Josh Park <50765702+JoshParkSJ@users.noreply.github.com> Date: Thu, 26 Feb 2026 12:55:31 -0500 Subject: [PATCH] feat: add cas hitl for base tool class --- pyproject.toml | 2 +- src/uipath/agent/models/agent.py | 3 +++ uv.lock | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 06b2cb6d8..672c5fe45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath" -version = "2.9.12" +version = "2.9.13" description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11" diff --git a/src/uipath/agent/models/agent.py b/src/uipath/agent/models/agent.py index a0bbcfd46..5323e54e1 100644 --- a/src/uipath/agent/models/agent.py +++ b/src/uipath/agent/models/agent.py @@ -272,6 +272,9 @@ class BaseResourceProperties(BaseCfg): """Base resource properties model.""" example_calls: Optional[list[ExampleCall]] = Field(None, alias="exampleCalls") + require_conversational_confirmation: bool = Field( + default=False, alias="requireConversationalConfirmation" + ) class AgentToolSettings(BaseCfg): diff --git a/uv.lock b/uv.lock index 3cf725e90..f326dc5c7 100644 --- a/uv.lock +++ b/uv.lock @@ -2531,7 +2531,7 @@ wheels = [ [[package]] name = "uipath" -version = "2.9.12" +version = "2.9.13" source = { editable = "." } dependencies = [ { name = "applicationinsights" },