uipath 2.1.121__py3-none-any.whl → 2.1.123__py3-none-any.whl

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.

@@ -52,7 +52,7 @@ Based on the above information, provide a realistic input to the LLM agent. Your
52
52
  OUTPUT: ONLY the simulated agent input in the exact format of the INPUT_SCHEMA in valid JSON. Do not include any explanations, quotation marks, or markdown."""
53
53
 
54
54
 
55
- @traced(name="__mocker__")
55
+ @traced(name="__mocker__", recording=False)
56
56
  async def generate_llm_input(
57
57
  evaluation_item: AnyEvaluationItem,
58
58
  input_schema: Dict[str, Any],
@@ -82,7 +82,7 @@ class LLMMocker(Mocker):
82
82
  self.evaluation_item = evaluation_item
83
83
  assert isinstance(self.evaluation_item.mocking_strategy, LLMMockingStrategy)
84
84
 
85
- @traced(name="__mocker__")
85
+ @traced(name="__mocker__", recording=False)
86
86
  async def response(
87
87
  self, func: Callable[[T], R], params: dict[str, Any], *args: T, **kwargs
88
88
  ) -> R:
@@ -96,6 +96,7 @@ class UiPathErrorCategory(str, Enum):
96
96
  class UiPathErrorCode(str, Enum):
97
97
  """Standard error codes for UiPath runtime errors."""
98
98
 
99
+ AUTHENTICATION_REQUIRED = "AUTHENTICATION_REQUIRED"
99
100
  # Entrypoint related errors
100
101
  ENTRYPOINT_MISSING = "ENTRYPOINT_MISSING"
101
102
  ENTRYPOINT_NOT_FOUND = "ENTRYPOINT_NOT_FOUND"