From 6e7cc52e1d5b80e8c2f30bcd7a82d77004147ed7 Mon Sep 17 00:00:00 2001 From: Gabriel Martin <91462031+gcuip@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:12:25 +0100 Subject: [PATCH] feat: add argumentProperties for AgentContextResourceConfig --- packages/uipath/pyproject.toml | 2 +- packages/uipath/src/uipath/agent/models/agent.py | 3 +++ packages/uipath/uv.lock | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/uipath/pyproject.toml b/packages/uipath/pyproject.toml index 862b2388a..a1e30f8e6 100644 --- a/packages/uipath/pyproject.toml +++ b/packages/uipath/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath" -version = "2.10.10" +version = "2.10.11" 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/packages/uipath/src/uipath/agent/models/agent.py b/packages/uipath/src/uipath/agent/models/agent.py index bf89c6de0..6ad1932d9 100644 --- a/packages/uipath/src/uipath/agent/models/agent.py +++ b/packages/uipath/src/uipath/agent/models/agent.py @@ -387,6 +387,9 @@ class AgentContextResourceConfig(BaseAgentResourceConfig): folder_path: str = Field(alias="folderPath") index_name: str = Field(alias="indexName") settings: AgentContextSettings = Field(..., description="Context settings") + argument_properties: Dict[str, AgentToolArgumentProperties] = Field( + {}, alias="argumentProperties" + ) class AgentMcpTool(BaseCfg): diff --git a/packages/uipath/uv.lock b/packages/uipath/uv.lock index e9834ba3d..f7e3594d4 100644 --- a/packages/uipath/uv.lock +++ b/packages/uipath/uv.lock @@ -2531,7 +2531,7 @@ wheels = [ [[package]] name = "uipath" -version = "2.10.10" +version = "2.10.11" source = { editable = "." } dependencies = [ { name = "applicationinsights" },