Skip to content
Open
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath-runtime"
version = "0.4.0"
version = "0.4.1"
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"
Expand Down
2 changes: 2 additions & 0 deletions src/uipath/runtime/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ class UiPathRuntimeSchema(BaseModel):
unique_id: str = Field(..., alias="uniqueId")
type: str = Field(..., alias="type")
input: dict[str, Any] = Field(..., alias="input")
has_input_circular_dependency: bool = Field(default=False, exclude=True)
has_output_circular_dependency: bool = Field(default=False, exclude=True)
Comment on lines +60 to +61
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new circular dependency fields lack description parameters, which is inconsistent with other fields in this class. Consider adding descriptions to explain their purpose, similar to how other fields like 'graph' and 'metadata' include descriptions.

Suggested change
has_input_circular_dependency: bool = Field(default=False, exclude=True)
has_output_circular_dependency: bool = Field(default=False, exclude=True)
has_input_circular_dependency: bool = Field(
default=False,
exclude=True,
description="Indicates whether the input definition contains circular dependencies",
)
has_output_circular_dependency: bool = Field(
default=False,
exclude=True,
description="Indicates whether the output definition contains circular dependencies",
)

Copilot uses AI. Check for mistakes.
output: dict[str, Any] = Field(..., alias="output")
graph: UiPathRuntimeGraph | None = Field(
None, description="Runtime graph structure for debugging"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

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

Loading