From a813856d11d47f3fa343aba9b88449cfe7fa2675 Mon Sep 17 00:00:00 2001 From: Cristian Pufu Date: Thu, 18 Dec 2025 12:35:59 +0200 Subject: [PATCH] fix: test no resume --- pyproject.toml | 2 +- src/uipath_langchain/runtime/runtime.py | 4 ++-- uv.lock | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 851e49d0..e3f4c0e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-langchain" -version = "0.1.32" +version = "0.1.33" description = "Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11" diff --git a/src/uipath_langchain/runtime/runtime.py b/src/uipath_langchain/runtime/runtime.py index bd28764c..388f4a48 100644 --- a/src/uipath_langchain/runtime/runtime.py +++ b/src/uipath_langchain/runtime/runtime.py @@ -214,8 +214,8 @@ async def _get_graph_input( messages = graph_input.get("messages", None) if messages and isinstance(messages, list): graph_input["messages"] = self.chat.map_messages(messages) - if options and options.resume: - return Command(resume=graph_input) + # if options and options.resume: + # return Command(resume=graph_input) return graph_input async def _get_graph_state( diff --git a/uv.lock b/uv.lock index 2ab5af58..76ff0529 100644 --- a/uv.lock +++ b/uv.lock @@ -3260,7 +3260,7 @@ wheels = [ [[package]] name = "uipath-langchain" -version = "0.1.32" +version = "0.1.33" source = { editable = "." } dependencies = [ { name = "aiosqlite" },