From 7e9173722c0679f886b11ada7832c0d6bd5f5667 Mon Sep 17 00:00:00 2001 From: radu-mocanu Date: Mon, 7 Apr 2025 14:56:23 +0300 Subject: [PATCH] fix: job.Key should be lowercase --- pyproject.toml | 2 +- src/uipath_langchain/_cli/_runtime/_output.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bf496c7b..03b9efb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-langchain" -version = "0.0.85" +version = "0.0.86" description = "UiPath Langchain" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.10" diff --git a/src/uipath_langchain/_cli/_runtime/_output.py b/src/uipath_langchain/_cli/_runtime/_output.py index a8d9def2..a039582f 100644 --- a/src/uipath_langchain/_cli/_runtime/_output.py +++ b/src/uipath_langchain/_cli/_runtime/_output.py @@ -243,7 +243,7 @@ async def _save_resume_trigger(self) -> None: if job: self._resume_trigger = UiPathResumeTrigger( trigger_type=UiPathResumeTriggerType.JOB, - item_key=job.Key, + item_key=job.key, ) elif isinstance(self.interrupt_value, WaitJob): self._resume_trigger = UiPathResumeTrigger(