From cf3638ab0771d09f639fd26de3436c3b303202b0 Mon Sep 17 00:00:00 2001 From: Viswanath Lekshmanan Date: Thu, 2 Jul 2026 16:22:28 +0530 Subject: [PATCH 1/2] feat(runtime): expose framework name via factory settings --- pyproject.toml | 2 +- src/uipath/runtime/factory.py | 4 ++++ uv.lock | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5f35dec..7fb9531 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-runtime" -version = "0.11.6" +version = "0.11.7" description = "Runtime abstractions and interfaces for building agents and automation scripts in the UiPath ecosystem" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11" diff --git a/src/uipath/runtime/factory.py b/src/uipath/runtime/factory.py index c9481bd..ee88e12 100644 --- a/src/uipath/runtime/factory.py +++ b/src/uipath/runtime/factory.py @@ -19,6 +19,10 @@ class UiPathRuntimeFactorySettings(BaseModel): trace_settings: UiPathTraceSettings | None = None + agent_type: str | None = None + + agent_framework: str | None = None + class UiPathRuntimeFactoryProtocol( UiPathDisposableProtocol, diff --git a/uv.lock b/uv.lock index 24e8901..03ad15a 100644 --- a/uv.lock +++ b/uv.lock @@ -1153,7 +1153,7 @@ wheels = [ [[package]] name = "uipath-runtime" -version = "0.11.6" +version = "0.11.7" source = { editable = "." } dependencies = [ { name = "chardet" }, From 927f15b48fb5d5ad570f5f49139083fd959330d0 Mon Sep 17 00:00:00 2001 From: Viswanath Lekshmanan Date: Thu, 2 Jul 2026 17:42:52 +0530 Subject: [PATCH 2/2] style(runtime): drop trailing whitespace in UiPathRuntimeFactorySettings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI's ``ruff format --check .`` flagged trailing whitespace on the blank line between the ``agent_type`` and ``agent_framework`` fields. Autoformat trim only — no behavioral change. Co-Authored-By: Claude Opus 4.8 --- src/uipath/runtime/factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uipath/runtime/factory.py b/src/uipath/runtime/factory.py index ee88e12..166d2ab 100644 --- a/src/uipath/runtime/factory.py +++ b/src/uipath/runtime/factory.py @@ -20,7 +20,7 @@ class UiPathRuntimeFactorySettings(BaseModel): trace_settings: UiPathTraceSettings | None = None agent_type: str | None = None - + agent_framework: str | None = None