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"
version = "2.2.36"
version = "2.2.37"
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.11"
Expand Down
26 changes: 13 additions & 13 deletions samples/calculator/evaluations/eval-sets/legacy.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"fileName": "default.json",
"id": "default-eval-set-id",
"name": "Basic Calculator Evaluation Set",
"fileName": "legacy.json",
"id": "a1b2c3d4-e5f6-4a89-abcd-ef0123456789",
"name": "Basic Calculator Evaluation Set (Legacy)",
"batchSize": 10,
"evaluatorRefs": [
"equality",
"llm-as-a-judge",
"json-similarity",
"trajectory"
"aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa",
"bbbbbbbb-bbbb-4bbb-bbbb-bbbbbbbbbbbb",
"cccccccc-cccc-4ccc-cccc-cccccccccccc",
"dddddddd-dddd-4ddd-dddd-dddddddddddd"
],
"evaluations": [
{
"id": "test-addition",
"id": "11111111-1111-4111-8111-111111111111",
"name": "Test Addition",
"inputs": {
"a": 1,
Expand All @@ -22,12 +22,12 @@
"result": 2.0
},
"expectedAgentBehavior": "The operation should produce the right output.",
"evalSetId": "default-eval-set-id",
"evalSetId": "a1b2c3d4-e5f6-4a89-abcd-ef0123456789",
"createdAt": "2025-09-04T18:54:58.378Z",
"updatedAt": "2025-09-04T18:55:55.416Z"
},
{
"id": "test-random-addition-using-llm",
"id": "22222222-2222-4222-8222-222222222222",
"name": "Test Random Addition Using LLM",
"inputs": {
"a": 1,
Expand All @@ -45,12 +45,12 @@
"name": "get_random_operator"
}
],
"evalSetId": "default-eval-set-id",
"evalSetId": "a1b2c3d4-e5f6-4a89-abcd-ef0123456789",
"createdAt": "2025-09-04T18:54:58.378Z",
"updatedAt": "2025-09-04T18:55:55.416Z"
},
{
"id": "test-with-llm-input-mocking",
"id": "33333333-3333-4333-8333-333333333333",
"name": "Test with LLM input mocking",
"inputs": {},
"expectedOutput": {
Expand All @@ -59,7 +59,7 @@
"expectedAgentBehavior": "The operation should produce the right output.",
"simulateInput": true,
"inputGenerationInstructions": "Generate a multiplication calculation where the first number is 5 and the second number is 7",
"evalSetId": "default-eval-set-id",
"evalSetId": "a1b2c3d4-e5f6-4a89-abcd-ef0123456789",
"createdAt": "2025-09-04T18:54:58.378Z",
"updatedAt": "2025-09-04T18:55:55.416Z"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"fileName": "equality.json",
"id": "equality",
"fileName": "legacy-equality.json",
"id": "aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa",
"name": "Equality Evaluator",
"description": "An evaluator that judges the agent based on expected output.",
"category": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"fileName": "json-similarity.json",
"id": "json-similarity",
"fileName": "legacy-json-similarity.json",
"id": "cccccccc-cccc-4ccc-cccc-cccccccccccc",
"name": "JSON Similarity Evaluator",
"description": "An evaluator that compares JSON structures with tolerance for numeric and string differences.",
"category": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"fileName": "llm-as-a-judge.json",
"id": "llm-as-a-judge",
"fileName": "legacy-llm-as-a-judge.json",
"id": "bbbbbbbb-bbbb-4bbb-bbbb-bbbbbbbbbbbb",
"name": "LLMAsAJudge Evaluator",
"description": "An evaluator that judges the agent based on it's run history and expected behavior",
"category": 3,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"fileName": "trajectory.json",
"id": "trajectory",
"fileName": "legacy-trajectory.json",
"id": "dddddddd-dddd-4ddd-dddd-dddddddddddd",
"name": "Trajectory Evaluator",
"description": "An evaluator that analyzes the execution trajectory and decision sequence taken by the agent.",
"category": 3,
Expand Down
Loading