Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[project]
name = "uipath-dev"
version = "0.0.13"
version = "0.0.14"
description = "UiPath Developer Console"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
dependencies = [
"uipath-runtime>=0.2.0, <0.3.0",
"textual>=6.7.1, <7.0.0",
"uipath-runtime>=0.3.0, <0.4.0",
"textual>=6.11.0, <7.0.0",
"pyperclip>=1.11.0, <2.0.0",
]
classifiers = [
Expand Down
4 changes: 2 additions & 2 deletions src/uipath/dev/models/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def add(
new_tc = UiPathConversationToolCall(
tool_call_id=tc_event.tool_call_id,
name=tc_event.start.tool_name,
arguments=None, # args will arrive as JSON content part
input=None, # input will arrive as JSON content part
timestamp=tc_event.start.timestamp,
result=None,
)
Expand All @@ -135,7 +135,7 @@ def add(
existing_tool_call = UiPathConversationToolCall(
tool_call_id=tc_event.tool_call_id,
name="", # unknown until start seen
arguments=None,
input=None,
)
if msg.tool_calls is None:
msg.tool_calls = []
Expand Down
2 changes: 1 addition & 1 deletion src/uipath/dev/ui/panels/chat_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def add_chat_message(
if isinstance(part.data, UiPathInlineValue):
parts.append(part.data.inline or "")
elif isinstance(part.data, UiPathExternalValue):
parts.append(f"[external: {part.data.url}]")
parts.append(f"[external: {part.data.uri}]")

text_block = "\n".join(parts).strip()
content_lines = [f"{text_block}"] if text_block else []
Expand Down
24 changes: 12 additions & 12 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.