Skip to content

Commit 1431778

Browse files
committed
skip interrupts for eval
1 parent a62ab10 commit 1431778

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-langchain"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
description = "Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath_langchain/chat/hitl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
CANCELLED_MESSAGE = "Cancelled by user"
1515
ARGS_MODIFIED_MESSAGE = "Tool arguments were modified by the user"
16+
1617
CONVERSATIONAL_APPROVED_TOOL_ARGS = "conversational_approved_tool_args"
1718
REQUIRE_CONVERSATIONAL_CONFIRMATION = "require_conversational_confirmation"
1819

src/uipath_langchain/runtime/messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ def _map_langchain_ai_message_to_uipath_message_data(
683683
role="assistant",
684684
content_parts=content_parts,
685685
tool_calls=uipath_tool_calls,
686-
interrupts=[], # TODO: Interrupts
686+
interrupts=[], # interrupts are skipped during eval mode
687687
)
688688

689689

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)