uipath 2.0.66__py3-none-any.whl → 2.0.67__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/_services/context_grounding_service.py +4 -2
- uipath/_services/folder_service.py +8 -14
- {uipath-2.0.66.dist-info → uipath-2.0.67.dist-info}/METADATA +1 -1
- {uipath-2.0.66.dist-info → uipath-2.0.67.dist-info}/RECORD +7 -7
- {uipath-2.0.66.dist-info → uipath-2.0.67.dist-info}/WHEEL +0 -0
- {uipath-2.0.66.dist-info → uipath-2.0.67.dist-info}/entry_points.txt +0 -0
- {uipath-2.0.66.dist-info → uipath-2.0.67.dist-info}/licenses/LICENSE +0 -0
|
@@ -673,7 +673,7 @@ class ContextGroundingService(FolderContext, BaseService):
|
|
|
673
673
|
)
|
|
674
674
|
|
|
675
675
|
if folder_key is None:
|
|
676
|
-
raise ValueError("
|
|
676
|
+
raise ValueError("ContextGrounding: Failed to resolve folder key")
|
|
677
677
|
|
|
678
678
|
return folder_key
|
|
679
679
|
|
|
@@ -681,4 +681,6 @@ class ContextGroundingService(FolderContext, BaseService):
|
|
|
681
681
|
try:
|
|
682
682
|
return index.data_source.bucketName, index.data_source.folder # type: ignore
|
|
683
683
|
except AttributeError as e:
|
|
684
|
-
raise Exception(
|
|
684
|
+
raise Exception(
|
|
685
|
+
"ContextGrounding: Cannot extract bucket data from index"
|
|
686
|
+
) from e
|
|
@@ -34,25 +34,19 @@ class FolderService(BaseService):
|
|
|
34
34
|
url=spec.endpoint,
|
|
35
35
|
params=spec.params,
|
|
36
36
|
).json()
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
for item in response["PageItems"]
|
|
42
|
-
if item["FullyQualifiedName"] == folder_path
|
|
43
|
-
),
|
|
44
|
-
None,
|
|
45
|
-
)
|
|
37
|
+
try:
|
|
38
|
+
return response["value"][0]["Key"]
|
|
39
|
+
except KeyError:
|
|
40
|
+
return None
|
|
46
41
|
|
|
47
42
|
def _retrieve_spec(self, folder_path: str) -> RequestSpec:
|
|
48
43
|
folder_name = folder_path.split("/")[-1]
|
|
49
44
|
return RequestSpec(
|
|
50
45
|
method="GET",
|
|
51
|
-
endpoint=Endpoint(
|
|
52
|
-
"orchestrator_/api/FoldersNavigation/GetFoldersForCurrentUser"
|
|
53
|
-
),
|
|
46
|
+
endpoint=Endpoint("orchestrator_/odata/Folders"),
|
|
54
47
|
params={
|
|
55
|
-
"
|
|
56
|
-
"
|
|
48
|
+
"$filter": f"DisplayName eq '{folder_name}'",
|
|
49
|
+
"$top": 1,
|
|
50
|
+
"$select": "Key",
|
|
57
51
|
},
|
|
58
52
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.67
|
|
4
4
|
Summary: Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools.
|
|
5
5
|
Project-URL: Homepage, https://uipath.com
|
|
6
6
|
Project-URL: Repository, https://github.com/UiPath/uipath-python
|
|
@@ -52,8 +52,8 @@ uipath/_services/assets_service.py,sha256=acqWogfhZiSO1eeVYqFxmqWGSTmrW46QxI1J0b
|
|
|
52
52
|
uipath/_services/attachments_service.py,sha256=FwnagLtgpn_IpQMvo9uj5mmA_rlyTTiRd4IduB6FpaQ,26458
|
|
53
53
|
uipath/_services/buckets_service.py,sha256=Ikqt1Cgs_o2-2kuzcogcaBkNceSQDXLEe63kzkHzWqk,17374
|
|
54
54
|
uipath/_services/connections_service.py,sha256=qh-HNL_GJsyPUD0wSJZRF8ZdrTE9l4HrIilmXGK6dDk,4581
|
|
55
|
-
uipath/_services/context_grounding_service.py,sha256=
|
|
56
|
-
uipath/_services/folder_service.py,sha256=
|
|
55
|
+
uipath/_services/context_grounding_service.py,sha256=XHtaL-b3PnbmfTj_na9F-aimW_BmSMThXqKm27fCM10,24438
|
|
56
|
+
uipath/_services/folder_service.py,sha256=cBb_Pz4bNl4WngwtitM02OrBbQicGc19tY7MTrSiE9k,1882
|
|
57
57
|
uipath/_services/jobs_service.py,sha256=CnDd7BM4AMqcMIR1qqu5ohhxf9m0AF4dnGoF4EX38kw,30872
|
|
58
58
|
uipath/_services/llm_gateway_service.py,sha256=ySg3sflIoXmY9K7txlSm7bkuI2qzBT0kAKmGlFBk5KA,12032
|
|
59
59
|
uipath/_services/processes_service.py,sha256=b-c4ynjcgS0ymp130r0lI93z7DF989u8HWOmWCux754,5727
|
|
@@ -91,8 +91,8 @@ uipath/tracing/__init__.py,sha256=GKRINyWdHVrDsI-8mrZDLdf0oey6GHGlNZTOADK-kgc,22
|
|
|
91
91
|
uipath/tracing/_otel_exporters.py,sha256=x0PDPmDKJcxashsuehVsSsqBCzRr6WsNFaq_3_HS5F0,3014
|
|
92
92
|
uipath/tracing/_traced.py,sha256=qeVDrds2OUnpdUIA0RhtF0kg2dlAZhyC1RRkI-qivTM,18528
|
|
93
93
|
uipath/tracing/_utils.py,sha256=ZeensQexnw69jVcsVrGyED7mPlAU-L1agDGm6_1A3oc,10388
|
|
94
|
-
uipath-2.0.
|
|
95
|
-
uipath-2.0.
|
|
96
|
-
uipath-2.0.
|
|
97
|
-
uipath-2.0.
|
|
98
|
-
uipath-2.0.
|
|
94
|
+
uipath-2.0.67.dist-info/METADATA,sha256=DLK5UWyFFRJId5BHaj3VgCQYaqFrfM1XaxMvRwzwZEg,6304
|
|
95
|
+
uipath-2.0.67.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
96
|
+
uipath-2.0.67.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
97
|
+
uipath-2.0.67.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
98
|
+
uipath-2.0.67.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|