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.
- uipath/_cli/_evals/mocks/input_mocker.py +1 -1
- uipath/_cli/_evals/mocks/llm_mocker.py +1 -1
- uipath/_cli/_runtime/_contracts.py +1 -0
- uipath/_services/buckets_service.py +879 -48
- uipath/models/__init__.py +2 -1
- uipath/models/buckets.py +50 -1
- uipath/tracing/_traced.py +33 -18
- uipath/tracing/_utils.py +0 -26
- {uipath-2.1.121.dist-info → uipath-2.1.123.dist-info}/METADATA +1 -1
- {uipath-2.1.121.dist-info → uipath-2.1.123.dist-info}/RECORD +13 -13
- {uipath-2.1.121.dist-info → uipath-2.1.123.dist-info}/WHEEL +0 -0
- {uipath-2.1.121.dist-info → uipath-2.1.123.dist-info}/entry_points.txt +0 -0
- {uipath-2.1.121.dist-info → uipath-2.1.123.dist-info}/licenses/LICENSE +0 -0
|
@@ -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"
|