uipath 2.1.94__tar.gz → 2.1.145__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of uipath might be problematic. Click here for more details.

Files changed (530) hide show
  1. uipath-2.1.145/.claude/agents/command-tester.md +454 -0
  2. uipath-2.1.145/.claude/agents/test-reporter.md +323 -0
  3. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/ci.yml +1 -1
  4. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/integration_tests.yml +18 -1
  5. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/test.yml +1 -0
  6. uipath-2.1.145/.pipelines/security-scans.yml +53 -0
  7. uipath-2.1.145/.pipelines/variables.yml +2 -0
  8. {uipath-2.1.94 → uipath-2.1.145}/PKG-INFO +1 -1
  9. uipath-2.1.145/docs/AutomationSuite.md +150 -0
  10. uipath-2.1.145/docs/core/documents_models.md +3 -0
  11. uipath-2.1.145/docs/sample_images/resource-overrides/package-requirements.png +0 -0
  12. {uipath-2.1.94 → uipath-2.1.145}/mkdocs.yml +1 -0
  13. {uipath-2.1.94 → uipath-2.1.145}/pyproject.toml +3 -4
  14. {uipath-2.1.94 → uipath-2.1.145}/samples/asset-modifier-agent/pyproject.toml +1 -1
  15. uipath-2.1.145/samples/calculator/README.md +27 -0
  16. uipath-2.1.145/samples/calculator/evals/eval-sets/default.json +84 -0
  17. uipath-2.1.94/samples/calculator/evals/eval-sets/default.json → uipath-2.1.145/samples/calculator/evals/eval-sets/legacy.json +57 -12
  18. uipath-2.1.145/samples/calculator/evals/evaluators/contains.json +15 -0
  19. uipath-2.1.145/samples/calculator/evals/evaluators/correct-operator-evaluator.json +14 -0
  20. uipath-2.1.145/samples/calculator/evals/evaluators/custom/correct_operator.py +46 -0
  21. uipath-2.1.145/samples/calculator/evals/evaluators/custom/types/correct-operator-evaluator-types.json +57 -0
  22. uipath-2.1.145/samples/calculator/evals/evaluators/exact-match.json +17 -0
  23. uipath-2.1.145/samples/calculator/evals/evaluators/json-similarity.json +15 -0
  24. uipath-2.1.145/samples/calculator/evals/evaluators/legacy-json-similarity.json +11 -0
  25. uipath-2.1.145/samples/calculator/evals/evaluators/legacy-trajectory.json +13 -0
  26. uipath-2.1.145/samples/calculator/evals/evaluators/llm-judge-semantic-similarity.json +18 -0
  27. uipath-2.1.145/samples/calculator/evals/evaluators/llm-judge-strict-json-similarity.json +18 -0
  28. uipath-2.1.145/samples/calculator/evals/evaluators/trajectory.json +15 -0
  29. {uipath-2.1.94 → uipath-2.1.145}/samples/calculator/main.py +7 -3
  30. {uipath-2.1.94 → uipath-2.1.145}/samples/calculator/pyproject.toml +1 -1
  31. {uipath-2.1.94 → uipath-2.1.145}/samples/event-trigger/pyproject.toml +2 -2
  32. {uipath-2.1.94 → uipath-2.1.145}/samples/google-ADK-agent/pyproject.toml +1 -1
  33. uipath-2.1.145/samples/google-ADK-agent/uipath.json +27 -0
  34. uipath-2.1.145/samples/llm_chat_agent/README.md +318 -0
  35. uipath-2.1.145/samples/llm_chat_agent/agent.py +475 -0
  36. uipath-2.1.145/samples/llm_chat_agent/pyproject.toml +19 -0
  37. uipath-2.1.145/samples/llm_chat_agent/requirements.txt +9 -0
  38. uipath-2.1.145/samples/resource-overrides/.agent/CLI_REFERENCE.md +578 -0
  39. {uipath-2.1.94/src/uipath/_resources → uipath-2.1.145/samples/resource-overrides/.agent}/SDK_REFERENCE.md +61 -7
  40. uipath-2.1.145/samples/resource-overrides/README.md +132 -0
  41. uipath-2.1.145/samples/resource-overrides/bindings.json +127 -0
  42. uipath-2.1.145/samples/resource-overrides/main.py +55 -0
  43. uipath-2.1.145/samples/resource-overrides/pyproject.toml +10 -0
  44. uipath-2.1.145/samples/resource-overrides/uipath.json +36 -0
  45. uipath-2.1.145/samples/resource-overrides/uv.lock +2328 -0
  46. uipath-2.1.145/samples/weather_tools/README.md +201 -0
  47. uipath-2.1.145/samples/weather_tools/TOOL_EVALUATORS.md +322 -0
  48. uipath-2.1.145/samples/weather_tools/evals/eval-sets/default.json +373 -0
  49. uipath-2.1.145/samples/weather_tools/evals/evaluators/tool-call-args.json +14 -0
  50. uipath-2.1.145/samples/weather_tools/evals/evaluators/tool-call-count.json +26 -0
  51. uipath-2.1.145/samples/weather_tools/evals/evaluators/tool-call-order.json +13 -0
  52. uipath-2.1.145/samples/weather_tools/evals/evaluators/tool-call-output.json +30 -0
  53. uipath-2.1.145/samples/weather_tools/evals/evaluators/trajectory.json +15 -0
  54. uipath-2.1.145/samples/weather_tools/main.py +314 -0
  55. {uipath-2.1.94 → uipath-2.1.145}/scripts/update_agents_md.py +128 -8
  56. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/__init__.py +50 -4
  57. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/_auth_service.py +3 -3
  58. uipath-2.1.145/src/uipath/_cli/_auth/_oidc_utils.py +196 -0
  59. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/_portal_service.py +9 -13
  60. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/_url_utils.py +11 -14
  61. uipath-2.1.145/src/uipath/_cli/_auth/auth_config_cloud.json +6 -0
  62. uipath-2.1.145/src/uipath/_cli/_debug/_bridge.py +797 -0
  63. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_debug/_runtime.py +27 -11
  64. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_components/_new.py +3 -16
  65. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_console_progress_reporter.py +1 -1
  66. uipath-2.1.145/src/uipath/_cli/_evals/_evaluate.py +28 -0
  67. uipath-2.1.145/src/uipath/_cli/_evals/_evaluator_factory.py +396 -0
  68. uipath-2.1.145/src/uipath/_cli/_evals/_helpers.py +195 -0
  69. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_models/_evaluation_set.py +111 -2
  70. uipath-2.1.145/src/uipath/_cli/_evals/_models/_evaluator.py +280 -0
  71. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_models/_evaluator_base_params.py +3 -3
  72. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_models/_exceptions.py +2 -1
  73. uipath-2.1.145/src/uipath/_cli/_evals/_models/_output.py +201 -0
  74. uipath-2.1.145/src/uipath/_cli/_evals/_progress_reporter.py +846 -0
  75. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_runtime.py +160 -53
  76. uipath-2.1.145/src/uipath/_cli/_evals/mocks/cache_manager.py +94 -0
  77. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/mocks/input_mocker.py +48 -10
  78. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/mocks/llm_mocker.py +37 -9
  79. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/mocks/mocks.py +9 -1
  80. uipath-2.1.145/src/uipath/_cli/_push/models.py +17 -0
  81. uipath-2.1.145/src/uipath/_cli/_push/sw_file_handler.py +1052 -0
  82. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_runtime/_contracts.py +155 -15
  83. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_runtime/_hitl.py +7 -6
  84. uipath-2.1.145/src/uipath/_cli/_runtime/_runtime.py +143 -0
  85. uipath-2.1.145/src/uipath/_cli/_runtime/_runtime_factory.py +21 -0
  86. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_runtime/_script_executor.py +9 -12
  87. uipath-2.1.145/src/uipath/_cli/_templates/custom_evaluator.py.template +65 -0
  88. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_common.py +36 -1
  89. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_constants.py +5 -2
  90. uipath-2.1.145/src/uipath/_cli/_utils/_context.py +65 -0
  91. uipath-2.1.145/src/uipath/_cli/_utils/_eval_set.py +142 -0
  92. uipath-2.1.145/src/uipath/_cli/_utils/_formatters.py +173 -0
  93. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_parse_ast.py +20 -2
  94. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_project_files.py +146 -18
  95. uipath-2.1.145/src/uipath/_cli/_utils/_resources.py +21 -0
  96. uipath-2.1.145/src/uipath/_cli/_utils/_service_base.py +340 -0
  97. uipath-2.1.145/src/uipath/_cli/_utils/_service_cli_generator.py +705 -0
  98. uipath-2.1.145/src/uipath/_cli/_utils/_service_metadata.py +218 -0
  99. uipath-2.1.145/src/uipath/_cli/_utils/_service_protocol.py +223 -0
  100. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_studio_project.py +264 -19
  101. uipath-2.1.145/src/uipath/_cli/_utils/_type_registry.py +106 -0
  102. uipath-2.1.145/src/uipath/_cli/_utils/_validators.py +127 -0
  103. uipath-2.1.145/src/uipath/_cli/cli_add.py +115 -0
  104. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_debug.py +20 -3
  105. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_eval.py +65 -36
  106. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_init.py +71 -76
  107. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_pack.py +12 -4
  108. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_pull.py +31 -30
  109. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_push.py +46 -25
  110. uipath-2.1.145/src/uipath/_cli/cli_register.py +45 -0
  111. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_run.py +43 -23
  112. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/models/runtime_schema.py +3 -1
  113. uipath-2.1.145/src/uipath/_cli/services/__init__.py +38 -0
  114. uipath-2.1.145/src/uipath/_cli/services/_buckets_metadata.py +53 -0
  115. uipath-2.1.145/src/uipath/_cli/services/cli_buckets.py +526 -0
  116. uipath-2.1.145/src/uipath/_config.py +56 -0
  117. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_events/_events.py +5 -2
  118. uipath-2.1.145/src/uipath/_resources/AGENTS.md +21 -0
  119. uipath-2.1.145/src/uipath/_resources/CLAUDE.md +1 -0
  120. uipath-2.1.145/src/uipath/_resources/CLI_REFERENCE.md +565 -0
  121. uipath-2.1.145/src/uipath/_resources/REQUIRED_STRUCTURE.md +64 -0
  122. uipath-2.1.145/src/uipath/_resources/SDK_REFERENCE.md +468 -0
  123. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/_base_service.py +0 -3
  124. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/actions_service.py +12 -2
  125. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/assets_service.py +8 -8
  126. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/attachments_service.py +1 -1
  127. uipath-2.1.145/src/uipath/_services/buckets_service.py +1503 -0
  128. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/connections_service.py +175 -18
  129. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/context_grounding_service.py +12 -8
  130. uipath-2.1.145/src/uipath/_services/documents_service.py +1257 -0
  131. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/folder_service.py +1 -1
  132. uipath-2.1.145/src/uipath/_services/guardrails_service.py +76 -0
  133. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/jobs_service.py +1 -1
  134. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/llm_gateway_service.py +16 -3
  135. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/processes_service.py +4 -4
  136. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/queues_service.py +1 -1
  137. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_uipath.py +12 -40
  138. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/__init__.py +2 -2
  139. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/_auth.py +0 -8
  140. uipath-2.1.145/src/uipath/_utils/_bindings.py +199 -0
  141. uipath-2.1.145/src/uipath/_utils/_logs.py +13 -0
  142. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/constants.py +6 -0
  143. uipath-2.1.145/src/uipath/agent/_utils.py +174 -0
  144. uipath-2.1.145/src/uipath/agent/models/agent.py +671 -0
  145. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/models/evals.py +2 -2
  146. uipath-2.1.145/src/uipath/agent/react/__init__.py +22 -0
  147. {uipath-2.1.94/src/uipath/agent/loop → uipath-2.1.145/src/uipath/agent/react}/prompts.py +1 -1
  148. {uipath-2.1.94/src/uipath/agent/loop → uipath-2.1.145/src/uipath/agent/react}/tools.py +35 -3
  149. uipath-2.1.145/src/uipath/eval/_helpers/evaluators_helpers.py +494 -0
  150. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/eval/_helpers/helpers.py +30 -2
  151. uipath-2.1.145/src/uipath/eval/evaluators/__init__.py +70 -0
  152. uipath-2.1.145/src/uipath/eval/evaluators/base_evaluator.py +590 -0
  153. uipath-2.1.145/src/uipath/eval/evaluators/contains_evaluator.py +80 -0
  154. uipath-2.1.145/src/uipath/eval/evaluators/exact_match_evaluator.py +68 -0
  155. uipath-2.1.145/src/uipath/eval/evaluators/json_similarity_evaluator.py +180 -0
  156. uipath-2.1.145/src/uipath/eval/evaluators/legacy_base_evaluator.py +120 -0
  157. uipath-2.1.94/src/uipath/eval/evaluators/deterministic_evaluator_base.py → uipath-2.1.145/src/uipath/eval/evaluators/legacy_deterministic_evaluator_base.py +4 -4
  158. uipath-2.1.94/src/uipath/eval/evaluators/exact_match_evaluator.py → uipath-2.1.145/src/uipath/eval/evaluators/legacy_exact_match_evaluator.py +15 -6
  159. uipath-2.1.94/src/uipath/eval/evaluators/json_similarity_evaluator.py → uipath-2.1.145/src/uipath/eval/evaluators/legacy_json_similarity_evaluator.py +18 -5
  160. uipath-2.1.94/src/uipath/eval/evaluators/llm_as_judge_evaluator.py → uipath-2.1.145/src/uipath/eval/evaluators/legacy_llm_as_judge_evaluator.py +17 -7
  161. uipath-2.1.94/src/uipath/eval/evaluators/trajectory_evaluator.py → uipath-2.1.145/src/uipath/eval/evaluators/legacy_trajectory_evaluator.py +16 -7
  162. uipath-2.1.145/src/uipath/eval/evaluators/llm_as_judge_evaluator.py +202 -0
  163. uipath-2.1.145/src/uipath/eval/evaluators/llm_judge_output_evaluator.py +112 -0
  164. uipath-2.1.145/src/uipath/eval/evaluators/llm_judge_trajectory_evaluator.py +142 -0
  165. uipath-2.1.145/src/uipath/eval/evaluators/output_evaluator.py +117 -0
  166. uipath-2.1.145/src/uipath/eval/evaluators/tool_call_args_evaluator.py +82 -0
  167. uipath-2.1.145/src/uipath/eval/evaluators/tool_call_count_evaluator.py +87 -0
  168. uipath-2.1.145/src/uipath/eval/evaluators/tool_call_order_evaluator.py +84 -0
  169. uipath-2.1.145/src/uipath/eval/evaluators/tool_call_output_evaluator.py +87 -0
  170. uipath-2.1.145/src/uipath/eval/evaluators_types/ContainsEvaluator.json +73 -0
  171. uipath-2.1.145/src/uipath/eval/evaluators_types/ExactMatchEvaluator.json +89 -0
  172. uipath-2.1.145/src/uipath/eval/evaluators_types/JsonSimilarityEvaluator.json +81 -0
  173. uipath-2.1.145/src/uipath/eval/evaluators_types/LLMJudgeOutputEvaluator.json +110 -0
  174. uipath-2.1.145/src/uipath/eval/evaluators_types/LLMJudgeSimulationTrajectoryEvaluator.json +88 -0
  175. uipath-2.1.145/src/uipath/eval/evaluators_types/LLMJudgeStrictJSONSimilarityOutputEvaluator.json +110 -0
  176. uipath-2.1.145/src/uipath/eval/evaluators_types/LLMJudgeTrajectoryEvaluator.json +88 -0
  177. uipath-2.1.145/src/uipath/eval/evaluators_types/ToolCallArgsEvaluator.json +131 -0
  178. uipath-2.1.145/src/uipath/eval/evaluators_types/ToolCallCountEvaluator.json +104 -0
  179. uipath-2.1.145/src/uipath/eval/evaluators_types/ToolCallOrderEvaluator.json +100 -0
  180. uipath-2.1.145/src/uipath/eval/evaluators_types/ToolCallOutputEvaluator.json +124 -0
  181. uipath-2.1.145/src/uipath/eval/evaluators_types/generate_types.py +31 -0
  182. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/eval/models/__init__.py +16 -1
  183. uipath-2.1.145/src/uipath/eval/models/llm_judge_types.py +196 -0
  184. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/eval/models/models.py +109 -7
  185. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/__init__.py +2 -1
  186. uipath-2.1.145/src/uipath/models/buckets.py +76 -0
  187. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/connections.py +1 -0
  188. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/documents.py +85 -8
  189. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/exceptions.py +9 -5
  190. uipath-2.1.145/src/uipath/models/guardrails.py +246 -0
  191. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/job.py +1 -1
  192. uipath-2.1.145/src/uipath/py.typed +0 -0
  193. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/telemetry/_track.py +2 -2
  194. uipath-2.1.145/src/uipath/tracing/__init__.py +13 -0
  195. uipath-2.1.145/src/uipath/tracing/_otel_exporters.py +375 -0
  196. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/tracing/_traced.py +33 -18
  197. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/tracing/_utils.py +82 -64
  198. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/utils/_endpoints_manager.py +184 -200
  199. uipath-2.1.145/src/uipath/utils/dynamic_schema.py +128 -0
  200. uipath-2.1.145/testcases/tools-evals/pyproject.toml +12 -0
  201. uipath-2.1.145/testcases/tools-evals/run.sh +16 -0
  202. uipath-2.1.145/testcases/tools-evals/src/assert.py +102 -0
  203. uipath-2.1.145/tests/agent/models/test_agent.py +1769 -0
  204. {uipath-2.1.94 → uipath-2.1.145}/tests/agent/models/test_evals.py +9 -9
  205. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/conftest.py +7 -3
  206. uipath-2.1.145/tests/cli/contract/test_sdk_cli_alignment.py +275 -0
  207. uipath-2.1.145/tests/cli/eval/evals/eval-sets/default.json +25 -0
  208. uipath-2.1.145/tests/cli/eval/evals/evaluators/exact-match.json +17 -0
  209. uipath-2.1.145/tests/cli/eval/mocks/test_cache_manager.py +162 -0
  210. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/eval/mocks/test_input_mocker.py +6 -2
  211. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/eval/mocks/test_mocks.py +38 -24
  212. uipath-2.1.145/tests/cli/eval/test_evaluate.py +201 -0
  213. uipath-2.1.145/tests/cli/eval/test_progress_reporter.py +422 -0
  214. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/evaluators/test_json_similarity_evaluator.py +33 -12
  215. uipath-2.1.145/tests/cli/integration/test_buckets_commands.py +236 -0
  216. uipath-2.1.145/tests/cli/models/test_runtime_schema.py +46 -0
  217. uipath-2.1.145/tests/cli/test_conflict_handlers.py +249 -0
  218. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_hitl.py +20 -20
  219. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_init.py +45 -9
  220. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_init_agents_md.py +61 -20
  221. uipath-2.1.145/tests/cli/test_oidc_utils.py +233 -0
  222. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_pack.py +93 -29
  223. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_portal_service_refresh_token.py +15 -10
  224. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_pull.py +123 -6
  225. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_push.py +618 -0
  226. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_run.py +1 -0
  227. uipath-2.1.145/tests/cli/unit/test_buckets_migration.py +347 -0
  228. uipath-2.1.145/tests/cli/unit/test_context.py +75 -0
  229. uipath-2.1.145/tests/cli/unit/test_formatters.py +209 -0
  230. uipath-2.1.145/tests/cli/unit/test_service_cli_generator.py +913 -0
  231. uipath-2.1.145/tests/cli/unit/test_service_metadata.py +381 -0
  232. uipath-2.1.145/tests/cli/unit/test_service_protocol.py +361 -0
  233. uipath-2.1.145/tests/cli/unit/test_type_registry.py +202 -0
  234. uipath-2.1.145/tests/cli/unit/test_validators.py +419 -0
  235. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/utils/test_dynamic_schema.py +15 -4
  236. uipath-2.1.145/tests/evaluators/__init__.py +1 -0
  237. uipath-2.1.145/tests/evaluators/test_evaluator_aggregation.py +443 -0
  238. uipath-2.1.145/tests/evaluators/test_evaluator_helpers.py +822 -0
  239. uipath-2.1.145/tests/evaluators/test_evaluator_methods.py +1449 -0
  240. uipath-2.1.145/tests/evaluators/test_evaluator_schemas.py +687 -0
  241. uipath-2.1.145/tests/resource_overrides/__init__.py +1 -0
  242. uipath-2.1.145/tests/resource_overrides/overwrites.json +28 -0
  243. uipath-2.1.145/tests/resource_overrides/test_resource_overrides.py +400 -0
  244. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/conftest.py +1 -1
  245. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_assets_service.py +186 -0
  246. uipath-2.1.145/tests/sdk/services/test_buckets_service.py +1571 -0
  247. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_connections_service.py +261 -4
  248. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_context_grounding_service.py +158 -0
  249. uipath-2.1.145/tests/sdk/services/test_documents_service.py +1061 -0
  250. uipath-2.1.145/tests/sdk/services/test_guardrails_service.py +114 -0
  251. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_uipath_llm_integration.py +2 -5
  252. uipath-2.1.145/tests/sdk/services/tests_data/documents_service/classification_response.json +23 -0
  253. uipath-2.1.145/tests/sdk/services/tests_data/documents_service/modern_extraction_response.json +192 -0
  254. uipath-2.1.145/tests/sdk/test_bindings.py +337 -0
  255. uipath-2.1.145/tests/sdk/test_uipath_caching.py +326 -0
  256. uipath-2.1.145/tests/tracing/test_otel_exporters.py +559 -0
  257. {uipath-2.1.94 → uipath-2.1.145}/tests/tracing/test_span_utils.py +62 -1
  258. {uipath-2.1.94 → uipath-2.1.145}/tests/tracing/test_traced.py +167 -1
  259. {uipath-2.1.94 → uipath-2.1.145}/tests/tracing/test_tracing_manager.py +1 -1
  260. {uipath-2.1.94 → uipath-2.1.145}/uv.lock +1037 -799
  261. uipath-2.1.94/.claude/agents/command-tester.md +0 -100
  262. uipath-2.1.94/docs/core/documents_models.md +0 -1
  263. uipath-2.1.94/samples/calculator/README.md +0 -8
  264. uipath-2.1.94/src/uipath/_cli/_auth/_oidc_utils.py +0 -100
  265. uipath-2.1.94/src/uipath/_cli/_debug/_bridge.py +0 -414
  266. uipath-2.1.94/src/uipath/_cli/_evals/_evaluator_factory.py +0 -106
  267. uipath-2.1.94/src/uipath/_cli/_evals/_models/_evaluator.py +0 -106
  268. uipath-2.1.94/src/uipath/_cli/_evals/_models/_output.py +0 -103
  269. uipath-2.1.94/src/uipath/_cli/_evals/_progress_reporter.py +0 -444
  270. uipath-2.1.94/src/uipath/_cli/_push/sw_file_handler.py +0 -501
  271. uipath-2.1.94/src/uipath/_cli/_runtime/_runtime.py +0 -76
  272. uipath-2.1.94/src/uipath/_cli/_utils/_eval_set.py +0 -84
  273. uipath-2.1.94/src/uipath/_config.py +0 -6
  274. uipath-2.1.94/src/uipath/_resources/CLI_REFERENCE.md +0 -219
  275. uipath-2.1.94/src/uipath/_services/buckets_service.py +0 -509
  276. uipath-2.1.94/src/uipath/_services/documents_service.py +0 -651
  277. uipath-2.1.94/src/uipath/_utils/_infer_bindings.py +0 -51
  278. uipath-2.1.94/src/uipath/_utils/_logs.py +0 -15
  279. uipath-2.1.94/src/uipath/_utils/_read_overwrites.py +0 -144
  280. uipath-2.1.94/src/uipath/agent/_utils.py +0 -153
  281. uipath-2.1.94/src/uipath/agent/loop/__init__.py +0 -17
  282. uipath-2.1.94/src/uipath/agent/models/agent.py +0 -572
  283. uipath-2.1.94/src/uipath/eval/evaluators/__init__.py +0 -15
  284. uipath-2.1.94/src/uipath/eval/evaluators/base_evaluator.py +0 -88
  285. uipath-2.1.94/src/uipath/models/buckets.py +0 -27
  286. uipath-2.1.94/src/uipath/tracing/__init__.py +0 -4
  287. uipath-2.1.94/src/uipath/tracing/_otel_exporters.py +0 -95
  288. uipath-2.1.94/src/uipath/utils/dynamic_schema.py +0 -111
  289. uipath-2.1.94/tests/agent/models/test_agent.py +0 -425
  290. uipath-2.1.94/tests/cli/models/test_runtime_schema.py +0 -96
  291. uipath-2.1.94/tests/cli/test_oidc_utils.py +0 -96
  292. uipath-2.1.94/tests/sdk/services/test_buckets_service.py +0 -275
  293. uipath-2.1.94/tests/sdk/services/test_documents_service.py +0 -491
  294. uipath-2.1.94/tests/sdk/services/tests_data/documents_service/validated_result.json +0 -880
  295. uipath-2.1.94/tests/sdk/test_bindings_inference.py +0 -54
  296. uipath-2.1.94/tests/sdk/test_overwrites.py +0 -121
  297. uipath-2.1.94/tests/tracing/test_otel_exporters.py +0 -190
  298. {uipath-2.1.94 → uipath-2.1.145}/.claude/commands/prepare-pr.md +0 -0
  299. {uipath-2.1.94 → uipath-2.1.145}/.cursorrules +0 -0
  300. {uipath-2.1.94 → uipath-2.1.145}/.editorconfig +0 -0
  301. {uipath-2.1.94 → uipath-2.1.145}/.gitattributes +0 -0
  302. {uipath-2.1.94 → uipath-2.1.145}/.github/labeler.yml +0 -0
  303. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/auto-label.yml +0 -0
  304. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/cd.yml +0 -0
  305. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/commitlint.yml +0 -0
  306. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/lint.yml +0 -0
  307. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/publish-dev.yml +0 -0
  308. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/publish-docs.yml +0 -0
  309. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/slack.yml +0 -0
  310. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/test-uipath-langchain.yml +0 -0
  311. {uipath-2.1.94 → uipath-2.1.145}/.github/workflows/test-uipath-llamaindex.yml +0 -0
  312. {uipath-2.1.94 → uipath-2.1.145}/.gitignore +0 -0
  313. {uipath-2.1.94 → uipath-2.1.145}/.pre-commit-config.yaml +0 -0
  314. {uipath-2.1.94 → uipath-2.1.145}/.python-version +0 -0
  315. {uipath-2.1.94 → uipath-2.1.145}/.vscode/extensions.json +0 -0
  316. {uipath-2.1.94 → uipath-2.1.145}/.vscode/launch.json +0 -0
  317. {uipath-2.1.94 → uipath-2.1.145}/.vscode/settings.json +0 -0
  318. {uipath-2.1.94 → uipath-2.1.145}/CONTRIBUTING.md +0 -0
  319. {uipath-2.1.94 → uipath-2.1.145}/LICENSE +0 -0
  320. {uipath-2.1.94 → uipath-2.1.145}/README.md +0 -0
  321. {uipath-2.1.94 → uipath-2.1.145}/docs/CONTRIBUTING.md +0 -0
  322. {uipath-2.1.94 → uipath-2.1.145}/docs/FAQ.md +0 -0
  323. {uipath-2.1.94 → uipath-2.1.145}/docs/assets/env-preparation-failed-dark.png +0 -0
  324. {uipath-2.1.94 → uipath-2.1.145}/docs/assets/env-preparation-failed-light.png +0 -0
  325. {uipath-2.1.94 → uipath-2.1.145}/docs/assets/favicon.png +0 -0
  326. {uipath-2.1.94 → uipath-2.1.145}/docs/assets/llms.txt +0 -0
  327. {uipath-2.1.94 → uipath-2.1.145}/docs/assets/logo-dark.svg +0 -0
  328. {uipath-2.1.94 → uipath-2.1.145}/docs/assets/logo-light.svg +0 -0
  329. {uipath-2.1.94 → uipath-2.1.145}/docs/cli/index.md +0 -0
  330. {uipath-2.1.94 → uipath-2.1.145}/docs/core/actions.md +0 -0
  331. {uipath-2.1.94 → uipath-2.1.145}/docs/core/assets/cloud_env_var_dark.gif +0 -0
  332. {uipath-2.1.94 → uipath-2.1.145}/docs/core/assets/cloud_env_var_light.gif +0 -0
  333. {uipath-2.1.94 → uipath-2.1.145}/docs/core/assets/cloud_env_var_secret_dark.png +0 -0
  334. {uipath-2.1.94 → uipath-2.1.145}/docs/core/assets/cloud_env_var_secret_light.png +0 -0
  335. {uipath-2.1.94 → uipath-2.1.145}/docs/core/assets/copy_path_dark.png +0 -0
  336. {uipath-2.1.94 → uipath-2.1.145}/docs/core/assets/copy_path_light.png +0 -0
  337. {uipath-2.1.94 → uipath-2.1.145}/docs/core/assets.md +0 -0
  338. {uipath-2.1.94 → uipath-2.1.145}/docs/core/attachments.md +0 -0
  339. {uipath-2.1.94 → uipath-2.1.145}/docs/core/buckets.md +0 -0
  340. {uipath-2.1.94 → uipath-2.1.145}/docs/core/connections.md +0 -0
  341. {uipath-2.1.94 → uipath-2.1.145}/docs/core/context_grounding.md +0 -0
  342. {uipath-2.1.94 → uipath-2.1.145}/docs/core/documents.md +0 -0
  343. {uipath-2.1.94 → uipath-2.1.145}/docs/core/environment_variables.md +0 -0
  344. {uipath-2.1.94 → uipath-2.1.145}/docs/core/getting_started.md +0 -0
  345. {uipath-2.1.94 → uipath-2.1.145}/docs/core/jobs.md +0 -0
  346. {uipath-2.1.94 → uipath-2.1.145}/docs/core/llm_gateway.md +0 -0
  347. {uipath-2.1.94 → uipath-2.1.145}/docs/core/processes.md +0 -0
  348. {uipath-2.1.94 → uipath-2.1.145}/docs/core/queues.md +0 -0
  349. {uipath-2.1.94 → uipath-2.1.145}/docs/core/traced.md +0 -0
  350. {uipath-2.1.94 → uipath-2.1.145}/docs/hooks.py +0 -0
  351. {uipath-2.1.94 → uipath-2.1.145}/docs/index.md +0 -0
  352. {uipath-2.1.94 → uipath-2.1.145}/docs/javascripts/extra.js +0 -0
  353. {uipath-2.1.94 → uipath-2.1.145}/docs/overrides/main.html +0 -0
  354. {uipath-2.1.94 → uipath-2.1.145}/docs/overrides/partials/actions.html +0 -0
  355. {uipath-2.1.94 → uipath-2.1.145}/docs/overrides/partials/logo.html +0 -0
  356. {uipath-2.1.94 → uipath-2.1.145}/docs/release_policy.md +0 -0
  357. {uipath-2.1.94 → uipath-2.1.145}/docs/sample_images/google-ADK-agent/agent-output.png +0 -0
  358. {uipath-2.1.94 → uipath-2.1.145}/docs/stylesheets/extra.css +0 -0
  359. {uipath-2.1.94 → uipath-2.1.145}/justfile +0 -0
  360. {uipath-2.1.94 → uipath-2.1.145}/py.typed +0 -0
  361. {uipath-2.1.94 → uipath-2.1.145}/samples/asset-modifier-agent/.env.example +0 -0
  362. {uipath-2.1.94 → uipath-2.1.145}/samples/asset-modifier-agent/README.md +0 -0
  363. {uipath-2.1.94 → uipath-2.1.145}/samples/asset-modifier-agent/input.json +0 -0
  364. {uipath-2.1.94 → uipath-2.1.145}/samples/asset-modifier-agent/main.py +0 -0
  365. {uipath-2.1.94 → uipath-2.1.145}/samples/asset-modifier-agent/uv.lock +0 -0
  366. /uipath-2.1.94/samples/calculator/evals/evaluators/equality.json → /uipath-2.1.145/samples/calculator/evals/evaluators/legacy-equality.json +0 -0
  367. /uipath-2.1.94/samples/calculator/evals/evaluators/llm-as-a-judge.json → /uipath-2.1.145/samples/calculator/evals/evaluators/legacy-llm-as-a-judge.json +0 -0
  368. {uipath-2.1.94 → uipath-2.1.145}/samples/calculator/uipath.json +0 -0
  369. {uipath-2.1.94 → uipath-2.1.145}/samples/event-trigger/.python-version +0 -0
  370. {uipath-2.1.94 → uipath-2.1.145}/samples/event-trigger/README.md +0 -0
  371. {uipath-2.1.94 → uipath-2.1.145}/samples/event-trigger/main.py +0 -0
  372. {uipath-2.1.94 → uipath-2.1.145}/samples/google-ADK-agent/.env.example +0 -0
  373. {uipath-2.1.94 → uipath-2.1.145}/samples/google-ADK-agent/README.md +0 -0
  374. {uipath-2.1.94 → uipath-2.1.145}/samples/google-ADK-agent/input.json +0 -0
  375. {uipath-2.1.94 → uipath-2.1.145}/samples/google-ADK-agent/multi_tool_agent/__init__.py +0 -0
  376. {uipath-2.1.94 → uipath-2.1.145}/samples/google-ADK-agent/multi_tool_agent/agent.py +0 -0
  377. {uipath-2.1.94 → uipath-2.1.145}/samples/google-ADK-agent/uv.lock +0 -0
  378. {uipath-2.1.94/src/uipath/_resources → uipath-2.1.145/samples/resource-overrides/.agent}/REQUIRED_STRUCTURE.md +0 -0
  379. {uipath-2.1.94/src/uipath/_resources → uipath-2.1.145/samples/resource-overrides}/AGENTS.md +0 -0
  380. {uipath-2.1.94/src/uipath/_resources → uipath-2.1.145/samples/resource-overrides}/CLAUDE.md +0 -0
  381. {uipath-2.1.94 → uipath-2.1.145}/scripts/debug_test.py +0 -0
  382. {uipath-2.1.94 → uipath-2.1.145}/scripts/lint_httpx_client.py +0 -0
  383. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/__init__.py +0 -0
  384. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/README.md +0 -0
  385. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/_auth_server.py +0 -0
  386. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/_models.py +0 -0
  387. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/_utils.py +0 -0
  388. /uipath-2.1.94/src/uipath/_cli/_auth/auth_config.json → /uipath-2.1.145/src/uipath/_cli/_auth/auth_config_25_10.json +0 -0
  389. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/index.html +0 -0
  390. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/localhost.crt +0 -0
  391. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_auth/localhost.key +0 -0
  392. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/__init__.py +0 -0
  393. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_components/_chat.py +0 -0
  394. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_components/_details.py +0 -0
  395. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_components/_history.py +0 -0
  396. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_components/_json_input.py +0 -0
  397. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_models/_execution.py +0 -0
  398. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_models/_messages.py +0 -0
  399. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_styles/terminal.tcss +0 -0
  400. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_utils/_chat.py +0 -0
  401. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_utils/_exporter.py +0 -0
  402. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_dev/_terminal/_utils/_logger.py +0 -0
  403. {uipath-2.1.94/src/uipath/_cli/models → uipath-2.1.145/src/uipath/_cli/_evals}/__init__.py +0 -0
  404. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_models/_mocks.py +0 -0
  405. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_models/_sw_reporting.py +0 -0
  406. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/_span_collection.py +0 -0
  407. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/mocks/__init__.py +0 -0
  408. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/mocks/mocker.py +0 -0
  409. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/mocks/mocker_factory.py +0 -0
  410. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_evals/mocks/mockito_mocker.py +0 -0
  411. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_runtime/_escalation.py +0 -0
  412. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_runtime/_logging.py +0 -0
  413. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_templates/.psmdcp.template +0 -0
  414. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_templates/.rels.template +0 -0
  415. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_templates/[Content_Types].xml.template +0 -0
  416. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_templates/main.py.template +0 -0
  417. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_templates/package.nuspec.template +0 -0
  418. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_console.py +0 -0
  419. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_debug.py +0 -0
  420. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_folders.py +0 -0
  421. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_input_args.py +0 -0
  422. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_processes.py +0 -0
  423. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_tracing.py +0 -0
  424. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/_utils/_uv_helpers.py +0 -0
  425. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_auth.py +0 -0
  426. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_deploy.py +0 -0
  427. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_dev.py +0 -0
  428. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_invoke.py +0 -0
  429. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_new.py +0 -0
  430. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/cli_publish.py +0 -0
  431. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/middlewares.py +0 -0
  432. {uipath-2.1.94/src/uipath/_events → uipath-2.1.145/src/uipath/_cli/models}/__init__.py +0 -0
  433. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_cli/spinner.py +0 -0
  434. /uipath-2.1.94/src/uipath/py.typed → /uipath-2.1.145/src/uipath/_events/__init__.py +0 -0
  435. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_events/_event_bus.py +0 -0
  436. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_execution_context.py +0 -0
  437. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_folder_context.py +0 -0
  438. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/__init__.py +0 -0
  439. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/api_client.py +0 -0
  440. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/entities_service.py +0 -0
  441. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_services/external_application_service.py +0 -0
  442. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/_endpoint.py +0 -0
  443. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/_request_override.py +0 -0
  444. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/_request_spec.py +0 -0
  445. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/_ssl_context.py +0 -0
  446. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/_url.py +0 -0
  447. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/_utils/_user_agent.py +0 -0
  448. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/__init__.py +0 -0
  449. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/async_stream.py +0 -0
  450. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/citation.py +0 -0
  451. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/content.py +0 -0
  452. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/conversation.py +0 -0
  453. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/event.py +0 -0
  454. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/exchange.py +0 -0
  455. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/message.py +0 -0
  456. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/meta.py +0 -0
  457. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/agent/conversation/tool.py +0 -0
  458. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/eval/_helpers/__init__.py +0 -0
  459. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/eval/mocks/__init__.py +0 -0
  460. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/eval/mocks/mockable.py +0 -0
  461. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/action_schema.py +0 -0
  462. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/actions.py +0 -0
  463. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/assets.py +0 -0
  464. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/attachment.py +0 -0
  465. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/auth.py +0 -0
  466. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/context_grounding.py +0 -0
  467. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/context_grounding_index.py +0 -0
  468. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/entities.py +0 -0
  469. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/errors.py +0 -0
  470. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/interrupt_models.py +0 -0
  471. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/llm_gateway.py +0 -0
  472. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/processes.py +0 -0
  473. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/models/queues.py +0 -0
  474. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/telemetry/__init__.py +0 -0
  475. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/telemetry/_constants.py +0 -0
  476. {uipath-2.1.94 → uipath-2.1.145}/src/uipath/utils/__init__.py +0 -0
  477. {uipath-2.1.94 → uipath-2.1.145}/testcases/apicalls-testcase/main.py +0 -0
  478. {uipath-2.1.94 → uipath-2.1.145}/testcases/apicalls-testcase/pyproject.toml +0 -0
  479. {uipath-2.1.94 → uipath-2.1.145}/testcases/apicalls-testcase/run.sh +0 -0
  480. {uipath-2.1.94 → uipath-2.1.145}/testcases/apicalls-testcase/src/assert.py +0 -0
  481. {uipath-2.1.94 → uipath-2.1.145}/testcases/basic-testcase/main.py +0 -0
  482. {uipath-2.1.94 → uipath-2.1.145}/testcases/basic-testcase/pyproject.toml +0 -0
  483. {uipath-2.1.94 → uipath-2.1.145}/testcases/basic-testcase/run.sh +0 -0
  484. {uipath-2.1.94 → uipath-2.1.145}/testcases/basic-testcase/src/assert.py +0 -0
  485. {uipath-2.1.94 → uipath-2.1.145}/testcases/common/validate_output.sh +0 -0
  486. {uipath-2.1.94 → uipath-2.1.145}/testcases/langchain-cross/agent.mermaid +0 -0
  487. {uipath-2.1.94 → uipath-2.1.145}/testcases/langchain-cross/langgraph.json +0 -0
  488. {uipath-2.1.94 → uipath-2.1.145}/testcases/langchain-cross/pyproject.toml +0 -0
  489. {uipath-2.1.94 → uipath-2.1.145}/testcases/langchain-cross/run.sh +0 -0
  490. {uipath-2.1.94 → uipath-2.1.145}/testcases/langchain-cross/src/assert.py +0 -0
  491. {uipath-2.1.94 → uipath-2.1.145}/testcases/langchain-cross/src/main.py +0 -0
  492. {uipath-2.1.94 → uipath-2.1.145}/testcases/llamaindex-cross/agent.mermaid +0 -0
  493. {uipath-2.1.94 → uipath-2.1.145}/testcases/llamaindex-cross/llama_index.json +0 -0
  494. {uipath-2.1.94 → uipath-2.1.145}/testcases/llamaindex-cross/pyproject.toml +0 -0
  495. {uipath-2.1.94 → uipath-2.1.145}/testcases/llamaindex-cross/run.sh +0 -0
  496. {uipath-2.1.94 → uipath-2.1.145}/testcases/llamaindex-cross/src/assert.py +0 -0
  497. {uipath-2.1.94 → uipath-2.1.145}/testcases/llamaindex-cross/src/main.py +0 -0
  498. {uipath-2.1.94 → uipath-2.1.145}/tests/__init__.py +0 -0
  499. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/mocks/bindings_script.py +0 -0
  500. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/mocks/pyproject.toml +0 -0
  501. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/mocks/simple_script.py +0 -0
  502. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/mocks/uipath-mock.json +0 -0
  503. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/mocks/uipath-simple-script-mock.json +0 -0
  504. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_auth.py +0 -0
  505. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_input_args.py +0 -0
  506. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_invoke.py +0 -0
  507. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_new.py +0 -0
  508. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_portal_service_ensure_valid_token.py +0 -0
  509. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_publish.py +0 -0
  510. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/test_utils.py +0 -0
  511. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/utils/common.py +0 -0
  512. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/utils/project_details.py +0 -0
  513. {uipath-2.1.94 → uipath-2.1.145}/tests/cli/utils/uipath_json.py +0 -0
  514. {uipath-2.1.94 → uipath-2.1.145}/tests/conftest.py +0 -0
  515. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_actions_service.py +0 -0
  516. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_api_client.py +0 -0
  517. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_attachments_service.py +0 -0
  518. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_base_service.py +0 -0
  519. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_entities_service.py +0 -0
  520. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_external_application_service.py +0 -0
  521. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_folder_service.py +0 -0
  522. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_jobs_service.py +0 -0
  523. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_llm_integration.py +0 -0
  524. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_llm_schema_cleanup.py +0 -0
  525. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_llm_service.py +0 -0
  526. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_processes_service.py +0 -0
  527. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/test_queues_service.py +0 -0
  528. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/services/tests_data/documents_service/create_validation_action_response.json +0 -0
  529. /uipath-2.1.94/tests/sdk/services/tests_data/documents_service/extraction_response.json → /uipath-2.1.145/tests/sdk/services/tests_data/documents_service/ixp_extraction_response.json +0 -0
  530. {uipath-2.1.94 → uipath-2.1.145}/tests/sdk/test_config.py +0 -0
@@ -0,0 +1,454 @@
1
+ ---
2
+ name: command-tester
3
+ description: Actively tests UiPath Python CLI commands on sample projects during development to verify functionality and help Claude Code continue implementation confidently
4
+ tools: Bash, Read, Glob
5
+ model: sonnet
6
+ ---
7
+
8
+ # UiPath Python CLI Command Tester
9
+
10
+ You are a specialized agent that actively tests UiPath Python CLI commands on sample projects during development. Your role is to quickly verify command functionality, inspect API payloads, validate schemas, and provide confident feedback to help Claude Code continue implementation.
11
+
12
+ ## Your Role
13
+
14
+ You automatically:
15
+ - Test CLI commands on available sample projects with detailed instrumentation
16
+ - Execute commands in proper environments with debug logging enabled
17
+ - Capture and analyze HTTP request/response payloads
18
+ - Validate payloads against backend schema requirements
19
+ - Compare before/after test results to prove fixes worked
20
+ - Detect error patterns and suggest root causes
21
+ - Report results with actionable insights
22
+ - Handle setup requirements for Studio Web commands
23
+ - Verify command functionality during development
24
+ - Help Claude Code proceed confidently with implementation
25
+
26
+ ## Available Sample Projects
27
+
28
+ Automatically check and use samples in `samples/` directory:
29
+ - `samples/calculator/` - Main testing sample
30
+ - Other samples as available
31
+
32
+ ## Testing Approach
33
+
34
+ ### 1. Environment Setup
35
+ Always use the root project virtual environment for latest changes:
36
+ ```bash
37
+ cd samples/calculator/
38
+ source ../../.venv/bin/activate
39
+ # Enable debug logging to capture detailed output
40
+ export UIPATH_LOG_LEVEL=DEBUG
41
+ ```
42
+
43
+ ### 1.1. Enhanced Debugging Setup (When Testing API Calls)
44
+ For commands that make API calls (eval, push, pull):
45
+ ```bash
46
+ # Capture full request/response details
47
+ export UIPATH_LOG_LEVEL=DEBUG
48
+ export PYTHONUNBUFFERED=1
49
+
50
+ # Run command and capture all output
51
+ uipath <command> 2>&1 | tee test_output.log
52
+
53
+ # Parse output for:
54
+ # - HTTP method and URL (POST/PUT/GET endpoints)
55
+ # - Request JSON payloads
56
+ # - Response status codes
57
+ # - Response bodies
58
+ # - Error messages and stack traces
59
+ ```
60
+
61
+ ### 2. Command Categories
62
+
63
+ **Studio Web Commands** (require setup):
64
+ - `uipath pull` - Requires UIPATH_PROJECT_ID and auth
65
+ - `uipath push` - Requires UIPATH_PROJECT_ID and auth
66
+ - `uipath auth` - Authentication setup
67
+
68
+ **Local Commands** (can run immediately):
69
+ - `uipath init` - Project initialization
70
+ - `uipath run` - Run agent locally
71
+ - `uipath pack` - Package project
72
+ - Build and development commands
73
+
74
+ ### 3. Execution Strategy
75
+
76
+ For **Studio Web commands** (push, pull, eval with reporting):
77
+ - Check if `.env` exists with UIPATH_PROJECT_ID
78
+ - If not configured, inform user: "Please configure one sample with Studio Web credentials to test push/pull commands"
79
+ - If configured, execute with debug logging and capture detailed output
80
+ - **Extract and analyze**:
81
+ - All HTTP requests: method, endpoint URL, JSON payload
82
+ - All HTTP responses: status code, response body
83
+ - Error messages and their context
84
+
85
+ For **Local commands** (run, pack, init):
86
+ - Execute immediately in appropriate sample directory
87
+ - Report output and success/failure
88
+ - Provide specific error details if failures occur
89
+
90
+ ### 3.1. Payload Inspection & Validation
91
+
92
+ When testing API commands, actively inspect payloads:
93
+
94
+ **Request Analysis**:
95
+ ```bash
96
+ # Look for patterns in debug output like:
97
+ # POST https://.../api/execution/agents/{id}/evalSetRun
98
+ # Request body: {"evalSetId": "...", "agentId": "...", ...}
99
+
100
+ # Extract and validate:
101
+ 1. Endpoint URL - Does it have /coded/ when expected?
102
+ 2. Request fields - Are GUIDs used where required?
103
+ 3. Field types - String vs GUID vs Integer
104
+ 4. Required fields - All present?
105
+ 5. Field names - Correct casing (camelCase)?
106
+ ```
107
+
108
+ **Response Analysis**:
109
+ ```bash
110
+ # Check response status and body:
111
+ # HTTP/1.1 200 OK
112
+ # {"id": "..."}
113
+
114
+ # OR error responses:
115
+ # HTTP/1.1 400 Bad Request
116
+ # {"errors": {"request": ["The request field is required."]}}
117
+
118
+ # Extract:
119
+ 1. Status code (200, 400, 404, 500)
120
+ 2. Success/error messages
121
+ 3. Specific field validation errors
122
+ ```
123
+
124
+ ### 3.2. Schema Validation
125
+
126
+ Compare actual payloads against backend schema requirements:
127
+
128
+ **For Legacy Evaluations** (non-coded):
129
+ - `evalSetId`: Must be GUID format (not string)
130
+ - `evaluatorId`: Must be GUID format (not string)
131
+ - `eval item id`: Must be GUID format (not string)
132
+ - Endpoint: NO `/coded/` in URL path
133
+ - Uses `assertionRuns` not `evaluatorRuns`
134
+ - Uses `evaluatorScores` not `scores`
135
+
136
+ **For Coded Evaluations** (v1.0):
137
+ - `evalSetId`: Can be string
138
+ - `evaluatorId`: Can be string
139
+ - `version`: Must include `"version": "1.0"` field
140
+ - Endpoint: MUST have `/coded/` in URL path
141
+ - Uses `evaluatorRuns` not `assertionRuns`
142
+ - Uses `scores` not `evaluatorScores`
143
+
144
+ **Validation Process**:
145
+ 1. Identify evaluation type from evaluator files (check for `version` field)
146
+ 2. Verify endpoint URL matches expected pattern
147
+ 3. Check payload fields match schema for that type
148
+ 4. Report any mismatches with specific field names
149
+
150
+ ### 3.3. Before/After Comparison (When Testing Fixes)
151
+
152
+ When testing a fix, provide before/after comparison:
153
+
154
+ **Baseline Capture** (before fix):
155
+ ```bash
156
+ # Capture initial state
157
+ uipath eval main.py evals/eval-sets/legacy.json 2>&1 | tee baseline.log
158
+
159
+ # Note:
160
+ - HTTP status codes (e.g., 400 Bad Request)
161
+ - Error messages
162
+ - Which API calls failed
163
+ ```
164
+
165
+ **Post-Fix Verification** (after fix):
166
+ ```bash
167
+ # Run same command
168
+ uipath eval main.py evals/eval-sets/legacy.json 2>&1 | tee fixed.log
169
+
170
+ # Compare and report:
171
+ - Status codes: 400 → 200
172
+ - Errors: "field required" → (none)
173
+ - Success: FAILED → PASS
174
+ ```
175
+
176
+ **Comparison Report**:
177
+ ```
178
+ Before Fix:
179
+ - POST evalSetRun: 400 Bad Request
180
+ - Error: "The request field is required"
181
+
182
+ After Fix:
183
+ - POST evalSetRun: 200 OK
184
+ - Success: eval set run created
185
+
186
+ Impact: Fix resolved API compatibility issue
187
+ ```
188
+
189
+ ### 3.4. Error Pattern Detection
190
+
191
+ Recognize common error patterns and suggest root causes:
192
+
193
+ **Pattern**: `400 Bad Request - "The request field is required"`
194
+ **Root Cause**: Payload structure mismatch - likely missing wrapper object or incorrect field names
195
+
196
+ **Pattern**: `400 Bad Request - JSON deserialization error for type 'Guid'`
197
+ **Root Cause**: Type mismatch - sending string where GUID expected
198
+
199
+ **Pattern**: `KeyError: 'SomeEvaluatorName'`
200
+ **Root Cause**: Evaluator ID mismatch - trying to access evaluator not in active dict
201
+
202
+ **Pattern**: `404 Not Found on .../coded/evalRun`
203
+ **Root Cause**: Endpoint routing issue - wrong URL path for evaluation type
204
+
205
+ **Pattern**: `Cannot report progress to SW. Function: create_eval_set_run`
206
+ **Root Cause**: Initial API call failed, preventing downstream operations
207
+
208
+ When you detect these patterns:
209
+ 1. Identify the specific pattern
210
+ 2. Explain the root cause
211
+ 3. Point to relevant backend schema files if helpful
212
+ 4. Suggest the fix approach
213
+
214
+ ### 3.5. Performance Metrics
215
+
216
+ Track and report performance data:
217
+
218
+ ```bash
219
+ # Time the execution
220
+ time uipath eval main.py evals/eval-sets/default.json
221
+
222
+ # Report:
223
+ - Total execution time
224
+ - Number of API calls made
225
+ - Average response time
226
+ - Any slow operations (>2s)
227
+ ```
228
+
229
+ ### 3.6. Parallel Testing (Optional)
230
+
231
+ When testing multiple evaluation sets:
232
+ ```bash
233
+ # Run in parallel
234
+ uipath eval main.py evals/eval-sets/legacy.json > legacy.log 2>&1 &
235
+ uipath eval main.py evals/eval-sets/default.json > coded.log 2>&1 &
236
+ wait
237
+
238
+ # Compare results side-by-side
239
+ ```
240
+
241
+ ### 3.7. Regression Testing
242
+
243
+ When testing a fix, verify it doesn't break other functionality:
244
+
245
+ ```bash
246
+ # Test all evaluation sets
247
+ for eval_set in evals/eval-sets/*.json; do
248
+ echo "Testing: $eval_set"
249
+ uipath eval main.py "$eval_set" 2>&1 | tee "test_$(basename $eval_set .json).log"
250
+ done
251
+
252
+ # Report matrix:
253
+ # Eval Set | Status | Issues
254
+ # --------- | ------ | ------
255
+ # legacy | PASS | -
256
+ # default | PASS | -
257
+ ```
258
+
259
+ ## Response Format
260
+
261
+ Always provide:
262
+ 1. **Command Executed**: What was tested
263
+ 2. **Environment**: Which sample and setup used
264
+ 3. **HTTP API Calls** (if applicable):
265
+ - Endpoint URLs called
266
+ - Request payloads (key fields)
267
+ - Response status codes
268
+ - Any errors
269
+ 4. **Schema Validation** (if applicable):
270
+ - Expected vs actual payload structure
271
+ - Type mismatches (string vs GUID)
272
+ - Missing/extra fields
273
+ 5. **Result**: Success/failure with key output
274
+ 6. **Error Analysis** (if failures):
275
+ - Pattern detected
276
+ - Root cause
277
+ - Suggested fix
278
+ 7. **Performance** (if relevant):
279
+ - Execution time
280
+ - Number of API calls
281
+ 8. **Confidence Level**: High/Medium/Low for Claude Code to proceed
282
+ 9. **Next Steps**: Any issues that need addressing
283
+
284
+ ## Enhanced Response Formats
285
+
286
+ ### API Testing with Payload Inspection
287
+
288
+ **Successful API Test**:
289
+ ```
290
+ ✅ **Command**: `uipath eval main.py evals/eval-sets/default.json`
291
+ 📁 **Environment**: samples/calculator with root venv (DEBUG logging enabled)
292
+
293
+ 📡 **HTTP API Calls**:
294
+ 1. POST .../api/execution/agents/{id}/coded/evalSetRun
295
+ - Status: 200 OK
296
+ - Payload includes: version="1.0", evalSetId (string)
297
+
298
+ 2. POST .../api/execution/agents/{id}/coded/evalRun (3x)
299
+ - Status: 200 OK (all tests)
300
+ - Payload includes: evalSnapshot with evaluationCriterias
301
+
302
+ 3. PUT .../api/execution/agents/{id}/coded/evalRun (3x)
303
+ - Status: 200 OK (all tests)
304
+ - Uses evaluatorRuns, scores fields
305
+
306
+ 4. PUT .../api/execution/agents/{id}/coded/evalSetRun
307
+ - Status: 200 OK
308
+ - Final aggregated scores submitted
309
+
310
+ ✓ **Schema Validation**: PASS
311
+ - All endpoints have /coded/ prefix (correct for coded evals)
312
+ - evalSetId is string type (correct)
313
+ - version field present (required)
314
+ - evaluatorRuns used instead of assertionRuns (correct)
315
+
316
+ 📊 **Result**: SUCCESS - All 3 test cases completed, scores reported to StudioWeb
317
+ ⏱️ **Performance**: 45s total, 8 API calls, avg 0.3s response time
318
+ 🎯 **Confidence**: HIGH - Coded evaluations working perfectly
319
+ ▶️ **Next Steps**: Claude Code can proceed confidently
320
+ ```
321
+
322
+ **API Test with Validation Errors**:
323
+ ```
324
+ ❌ **Command**: `uipath eval main.py evals/eval-sets/legacy.json`
325
+ 📁 **Environment**: samples/calculator with root venv (DEBUG logging enabled)
326
+
327
+ 📡 **HTTP API Calls**:
328
+ 1. POST .../api/execution/agents/{id}/evalSetRun
329
+ - Status: 400 Bad Request ❌
330
+ - Error: {"errors":{"request":["The request field is required."]}}
331
+ - Payload sent: {"evalSetId": "default-eval-set-id", ...}
332
+
333
+ ❌ **Schema Validation**: FAILED
334
+ Issue: evalSetId type mismatch
335
+ - Expected: GUID (e.g., "123e4567-e89b-12d3-a456-426614174000")
336
+ - Actual: String ("default-eval-set-id")
337
+ - Backend schema: CreateEvalSetRunRequest.evalSetId is Guid type
338
+
339
+ 🔍 **Error Analysis**:
340
+ Pattern: 400 Bad Request with type validation error
341
+ Root Cause: Legacy API expects GUID format for IDs, sample uses strings
342
+ Backend File: /Common/Evals/CreateEvalSetRunRequest.cs:7
343
+
344
+ 📊 **Result**: FAILED - Initial eval set run creation failed, blocking all tests
345
+ 🎯 **Confidence**: LOW - Type mismatch needs resolution
346
+ ▶️ **Next Steps**:
347
+ 1. Convert string IDs to GUID format for legacy API
348
+ 2. Use UUID5 for deterministic conversion
349
+ 3. Re-test to verify 200 OK response
350
+ ```
351
+
352
+ **Before/After Comparison**:
353
+ ```
354
+ 🔄 **Command**: `uipath eval main.py evals/eval-sets/legacy.json`
355
+ 📁 **Environment**: samples/calculator with root venv
356
+
357
+ 📊 **BEFORE FIX**:
358
+ POST .../evalSetRun: 400 Bad Request
359
+ Error: evalSetId type mismatch (string vs GUID)
360
+ Result: Cannot report progress to SW
361
+
362
+ 📊 **AFTER FIX**:
363
+ POST .../evalSetRun: 200 OK ✅
364
+ Payload: evalSetId converted to GUID (UUID5)
365
+ Result: All progress reported successfully
366
+
367
+ ✅ **Impact**: Fix resolved API compatibility
368
+ - Status: 400 → 200
369
+ - Errors: Present → None
370
+ - Success: 0/3 tests → 3/3 tests
371
+
372
+ 🎯 **Confidence**: HIGH - Fix verified working
373
+ ▶️ **Next Steps**: Ready to commit and create PR
374
+ ```
375
+
376
+ ## Sample Responses
377
+
378
+ **Successful Test**:
379
+ ```
380
+ ✅ **Command**: `uipath pull`
381
+ 📁 **Environment**: samples/calculator with root venv
382
+ 📊 **Result**: SUCCESS - Downloaded 3 coded-evals files with proper logging
383
+ 🎯 **Confidence**: HIGH - Command working as expected
384
+ ▶️ **Next Steps**: Claude Code can proceed confidently
385
+ ```
386
+
387
+ **Setup Required**:
388
+ ```
389
+ ⚠️ **Command**: `uipath push`
390
+ 📁 **Environment**: samples/calculator
391
+ 📊 **Result**: SETUP_REQUIRED - No UIPATH_PROJECT_ID configured
392
+ 🎯 **Confidence**: N/A - Cannot test without Studio Web setup
393
+ ▶️ **Next Steps**: Please configure one sample with Studio Web credentials for push/pull testing
394
+ ```
395
+
396
+ **Command Failure**:
397
+ ```
398
+ ❌ **Command**: `uipath pack`
399
+ 📁 **Environment**: samples/calculator with root venv
400
+ 📊 **Result**: FAILED - Missing required field in pyproject.toml
401
+ 🎯 **Confidence**: LOW - Issue needs resolution
402
+ ▶️ **Next Steps**: Fix pyproject.toml configuration before proceeding
403
+ ```
404
+
405
+ ## Special Testing Modes
406
+
407
+ ### Debug Mode (Always Use for API Commands)
408
+ ```bash
409
+ export UIPATH_LOG_LEVEL=DEBUG
410
+ uipath <command> 2>&1 | tee debug.log
411
+ ```
412
+ This captures full request/response details for analysis.
413
+
414
+ ### Comparison Mode (When Testing Fixes)
415
+ ```bash
416
+ # Before fix
417
+ uipath eval ... 2>&1 | tee before.log
418
+
419
+ # Apply fix
420
+
421
+ # After fix
422
+ uipath eval ... 2>&1 | tee after.log
423
+
424
+ # Compare
425
+ diff before.log after.log | grep -E "HTTP|200|400|ERROR"
426
+ ```
427
+
428
+ ### Regression Mode (Verify No Breakage)
429
+ ```bash
430
+ for eval_set in evals/eval-sets/*.json; do
431
+ name=$(basename "$eval_set" .json)
432
+ uipath eval main.py "$eval_set" > "test_${name}.log" 2>&1
433
+ if grep -q "200 OK" "test_${name}.log" && ! grep -q "Cannot report" "test_${name}.log"; then
434
+ echo "✅ $name: PASS"
435
+ else
436
+ echo "❌ $name: FAIL"
437
+ fi
438
+ done
439
+ ```
440
+
441
+ ## Tips for Maximum Effectiveness
442
+
443
+ 1. **Always enable DEBUG logging** when testing API commands
444
+ 2. **Extract actual payloads** from logs - don't assume structure
445
+ 3. **Validate against backend schema** - check types, required fields
446
+ 4. **Detect patterns** - group similar errors for root cause analysis
447
+ 5. **Compare before/after** - prove fixes work with concrete evidence
448
+ 6. **Test all eval sets** - ensure no regressions
449
+ 7. **Report URLs called** - show endpoint routing is correct
450
+ 8. **Include response bodies** - 400 errors contain valuable details
451
+ 9. **Time operations** - catch performance issues early
452
+ 10. **Be specific** - point to exact field names, line numbers, file paths
453
+
454
+ You are Claude Code's reliable testing partner - thorough, analytical, and confidence-building through detailed evidence.