Skip to content

Commit e31088e

Browse files
authored
Merge pull request #594 from UiPath/fix/regression
fix: allow extra runtime context
2 parents e8a7895 + d5bc076 commit e31088e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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"
3-
version = "2.1.53"
3+
version = "2.1.54"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath/_cli/_runtime/_contracts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ class UiPathRuntimeContext(BaseModel):
319319
chat_handler: Optional[UiPathConversationHandler] = None
320320
is_conversational: Optional[bool] = None
321321

322-
model_config = {"arbitrary_types_allowed": True}
322+
model_config = {"arbitrary_types_allowed": True, "extra": "allow"}
323323

324324
@classmethod
325325
def with_defaults(cls: type[C], config_path: Optional[str] = None, **kwargs) -> C:

0 commit comments

Comments
 (0)