Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
2 changes: 1 addition & 1 deletion 2 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.1.78"
version = "2.1.79"
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
Expand Down
6 changes: 4 additions & 2 deletions 6 src/uipath/eval/mocks/mockable.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ def get_input_schema(func):
def mockable(
name: Optional[str] = None,
description: Optional[str] = None,
input_schema: Optional[dict[str, Any]] = None,
output_schema: Optional[dict[str, Any]] = None,
example_calls: Optional[List[ExampleCall]] = None,
**kwargs,
):
Expand All @@ -91,8 +93,8 @@ def decorator(func):
params = {
"name": name or func.__name__,
"description": description or func.__doc__,
"input_schema": get_input_schema(func),
"output_schema": get_output_schema(func),
"input_schema": input_schema or get_input_schema(func),
"output_schema": output_schema or get_output_schema(func),
"example_calls": example_calls,
**kwargs,
}
Expand Down
2 changes: 1 addition & 1 deletion 2 uv.lock

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

Morty Proxy This is a proxified and sanitized view of the page, visit original site.