Skip to content

Commit adb0490

Browse files
authored
fix(HITLSimulations): lowecase escalation app names (#514)
1 parent f123d58 commit adb0490

3 files changed

Lines changed: 3 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.5.22"
3+
version = "0.5.23"
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/agent/tools/escalation_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ async def escalation_tool_fn(**kwargs: Any) -> dict[str, Any]:
127127
task_title = tool.metadata.get("task_title") or task_title
128128

129129
@mockable(
130-
name=tool_name,
130+
name=tool_name.lower(),
131131
description=resource.description,
132132
input_schema=input_model.model_json_schema(),
133133
output_schema=EscalationToolOutput.model_json_schema(),

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)