Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "uipath-langchain"
version = "0.0.88"
version = "0.0.89"
description = "UiPath Langchain"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
dependencies = [
"uipath>=2.0.4, <2.1.0",
"uipath>=2.0.7, <2.1.0",
"langgraph>=0.2.70",
"langchain-core>=0.3.34",
"langgraph-checkpoint-sqlite>=2.0.3",
Expand Down
8 changes: 4 additions & 4 deletions src/uipath_langchain/_cli/_runtime/_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ async def _save_resume_trigger(self) -> None:
if isinstance(self.interrupt_value, CreateAction):
action = uipath_sdk.actions.create(
title=self.interrupt_value.title,
app_name=self.interrupt_value.name
if self.interrupt_value.name
app_name=self.interrupt_value.app_name
if self.interrupt_value.app_name
else "",
app_key=self.interrupt_value.key
if self.interrupt_value.key
app_key=self.interrupt_value.app_key
if self.interrupt_value.app_key
else "",
app_version=self.interrupt_value.app_version
if self.interrupt_value.app_version
Expand Down