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
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-runtime"
version = "0.2.4"
version = "0.2.5"
description = "Runtime abstractions and interfaces for building agents and automation scripts in the UiPath ecosystem"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
dependencies = [
"uipath-core>=0.1.0, <0.2.0",
"uipath-core>=0.1.1, <0.2.0",
]
classifiers = [
"Intended Audience :: Developers",
Expand Down
6 changes: 3 additions & 3 deletions src/uipath/runtime/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,9 @@ def from_config(
}

fps_mappings = {
"conversationId": "conversation_id",
"exchangeId": "exchange_id",
"messageId": "message_id",
"conversationalService.conversationId": "conversation_id",
"conversationalService.exchangeId": "exchange_id",
"conversationalService.messageId": "message_id",
}

attributes_set = set()
Expand Down
12 changes: 6 additions & 6 deletions tests/test_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ def test_from_config_extracts_fps_properties_without_runtime(tmp_path: Path) ->
"""fpsProperties should be loaded even if 'runtime' block is missing."""
cfg = {
"fpsProperties": {
"conversationId": "conv-123",
"exchangeId": "ex-456",
"messageId": "msg-789",
"conversationalService.conversationId": "conv-123",
"conversationalService.exchangeId": "ex-456",
"conversationalService.messageId": "msg-789",
}
}
config_path = tmp_path / "uipath.json"
Expand All @@ -204,9 +204,9 @@ def test_from_config_loads_runtime_and_fps_properties(tmp_path: Path) -> None:
"logsFile": "my_logs.log",
},
"fpsProperties": {
"conversationId": "conv-abc",
"exchangeId": "ex-def",
"messageId": "msg-ghi",
"conversationalService.conversationId": "conv-abc",
"conversationalService.exchangeId": "ex-def",
"conversationalService.messageId": "msg-ghi",
},
}
config_path = tmp_path / "uipath.json"
Expand Down
10 changes: 5 additions & 5 deletions uv.lock

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