uipath 2.0.15__py3-none-any.whl → 2.0.17__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.

@@ -149,7 +149,9 @@ def select_tenant(
149
149
  click.echo("Available tenants:")
150
150
  for idx, name in enumerate(tenant_names):
151
151
  click.echo(f" {idx}: {name}")
152
- tenant_idx = click.prompt("Select tenant", type=int)
152
+ tenant_idx = (
153
+ 0 if len(tenant_names) == 1 else click.prompt("Select tenant", type=int)
154
+ )
153
155
  tenant_name = tenant_names[tenant_idx]
154
156
  account_name = tenants_and_organizations["organization"]["name"]
155
157
  click.echo(f"Selected tenant: {tenant_name}")
uipath/_cli/cli_pack.py CHANGED
@@ -12,8 +12,6 @@ try:
12
12
  except ImportError:
13
13
  import tomli as tomllib
14
14
 
15
- from ._utils._parse_ast import generate_bindings_json
16
-
17
15
  schema = "https://cloud.uipath.com/draft/2024-12/entry-point"
18
16
 
19
17
 
@@ -205,17 +203,23 @@ def pack_fn(projectName, description, entryPoints, version, authors, directory):
205
203
 
206
204
  # Get bindings from uipath.json if available
207
205
  config_path = os.path.join(directory, "uipath.json")
208
- if os.path.exists(config_path):
209
- with open(config_path, "r") as f:
210
- config_data = json.load(f)
211
- if "bindings" in config_data:
212
- bindings_content = config_data["bindings"]
213
- else:
214
- # Fall back to generating bindings from the first entry point
215
- bindings_content = generate_bindings_json(entryPoints[0]["filePath"])
216
- else:
217
- # Fall back to generating bindings from the first entry point
218
- bindings_content = generate_bindings_json(entryPoints[0]["filePath"])
206
+ if not os.path.exists(config_path):
207
+ raise Exception("uipath.json not found, please run `uipath init`")
208
+
209
+ # Define the allowlist of file extensions to include
210
+ file_extensions_included = [".py", ".mermaid", ".json", ".yaml", ".yml"]
211
+ files_included = []
212
+
213
+ with open(config_path, "r") as f:
214
+ config_data = json.load(f)
215
+ if "bindings" in config_data:
216
+ bindings_content = config_data["bindings"]
217
+ if "settings" in config_data:
218
+ settings = config_data["settings"]
219
+ if "fileExtensionsIncluded" in settings:
220
+ file_extensions_included.extend(settings["fileExtensionsIncluded"])
221
+ if "filesIncluded" in settings:
222
+ files_included = settings["filesIncluded"]
219
223
 
220
224
  content_types_content = generate_content_types_content()
221
225
  [psmdcp_file_name, psmdcp_content] = generate_psmdcp_content(
@@ -231,9 +235,6 @@ def pack_fn(projectName, description, entryPoints, version, authors, directory):
231
235
  # Create .uipath directory if it doesn't exist
232
236
  os.makedirs(".uipath", exist_ok=True)
233
237
 
234
- # Define the allowlist of file extensions to include
235
- file_extensions_allowlist = [".py", ".mermaid", ".json", ".yaml", ".yml"]
236
-
237
238
  with zipfile.ZipFile(
238
239
  f".uipath/{projectName}.{version}.nupkg", "w", zipfile.ZIP_DEFLATED
239
240
  ) as z:
@@ -260,7 +261,7 @@ def pack_fn(projectName, description, entryPoints, version, authors, directory):
260
261
 
261
262
  for file in files:
262
263
  file_extension = os.path.splitext(file)[1].lower()
263
- if file_extension in file_extensions_allowlist:
264
+ if file_extension in file_extensions_included or file in files_included:
264
265
  file_path = os.path.join(root, file)
265
266
  rel_path = os.path.relpath(file_path, directory)
266
267
  try:
@@ -6,7 +6,7 @@ from pydantic import TypeAdapter
6
6
  from .._config import Config
7
7
  from .._execution_context import ExecutionContext
8
8
  from .._folder_context import FolderContext
9
- from .._utils import Endpoint, RequestSpec
9
+ from .._utils import Endpoint, RequestSpec, header_folder
10
10
  from .._utils.constants import (
11
11
  HEADER_FOLDER_KEY,
12
12
  HEADER_FOLDER_PATH,
@@ -43,7 +43,12 @@ class ContextGroundingService(FolderContext, BaseService):
43
43
  super().__init__(config=config, execution_context=execution_context)
44
44
 
45
45
  @traced(run_type="uipath", hide_input=True, hide_output=True)
46
- def retrieve(self, name: str) -> Optional[ContextGroundingIndex]:
46
+ def retrieve(
47
+ self,
48
+ name: str,
49
+ folder_key: Optional[str] = None,
50
+ folder_path: Optional[str] = None,
51
+ ) -> Optional[ContextGroundingIndex]:
47
52
  """Retrieve context grounding index information by its name.
48
53
 
49
54
  This method fetches details about a specific context index, which can be
@@ -56,12 +61,17 @@ class ContextGroundingService(FolderContext, BaseService):
56
61
  Returns:
57
62
  Optional[ContextGroundingIndex]: The index information, including its configuration and metadata if found, otherwise None.
58
63
  """
59
- spec = self._retrieve_spec(name)
64
+ spec = self._retrieve_spec(
65
+ name,
66
+ folder_key=folder_key,
67
+ folder_path=folder_path,
68
+ )
60
69
 
61
70
  response = self.request(
62
71
  spec.method,
63
72
  spec.endpoint,
64
73
  params=spec.params,
74
+ headers=spec.headers,
65
75
  ).json()
66
76
  return next(
67
77
  (
@@ -73,7 +83,12 @@ class ContextGroundingService(FolderContext, BaseService):
73
83
  )
74
84
 
75
85
  @traced(run_type="uipath", hide_input=True, hide_output=True)
76
- async def retrieve_async(self, name: str) -> Optional[ContextGroundingIndex]:
86
+ async def retrieve_async(
87
+ self,
88
+ name: str,
89
+ folder_key: Optional[str] = None,
90
+ folder_path: Optional[str] = None,
91
+ ) -> Optional[ContextGroundingIndex]:
77
92
  """Retrieve asynchronously context grounding index information by its name.
78
93
 
79
94
  This method fetches details about a specific context index, which can be
@@ -87,7 +102,11 @@ class ContextGroundingService(FolderContext, BaseService):
87
102
  Optional[ContextGroundingIndex]: The index information, including its configuration and metadata if found, otherwise None.
88
103
 
89
104
  """
90
- spec = self._retrieve_spec(name)
105
+ spec = self._retrieve_spec(
106
+ name,
107
+ folder_key=folder_key,
108
+ folder_path=folder_path,
109
+ )
91
110
 
92
111
  response = (
93
112
  await self.request_async(
@@ -106,7 +125,12 @@ class ContextGroundingService(FolderContext, BaseService):
106
125
  )
107
126
 
108
127
  @traced(run_type="uipath", hide_input=True, hide_output=True)
109
- def retrieve_by_id(self, id: str) -> Any:
128
+ def retrieve_by_id(
129
+ self,
130
+ id: str,
131
+ folder_key: Optional[str] = None,
132
+ folder_path: Optional[str] = None,
133
+ ) -> Any:
110
134
  """Retrieve context grounding index information by its ID.
111
135
 
112
136
  This method provides direct access to a context index using its unique
@@ -118,7 +142,11 @@ class ContextGroundingService(FolderContext, BaseService):
118
142
  Returns:
119
143
  Any: The index information, including its configuration and metadata.
120
144
  """
121
- spec = self._retrieve_by_id_spec(id)
145
+ spec = self._retrieve_by_id_spec(
146
+ id,
147
+ folder_key=folder_key,
148
+ folder_path=folder_path,
149
+ )
122
150
 
123
151
  return self.request(
124
152
  spec.method,
@@ -127,7 +155,12 @@ class ContextGroundingService(FolderContext, BaseService):
127
155
  ).json()
128
156
 
129
157
  @traced(run_type="uipath", hide_input=True, hide_output=True)
130
- async def retrieve_by_id_async(self, id: str) -> Any:
158
+ async def retrieve_by_id_async(
159
+ self,
160
+ id: str,
161
+ folder_key: Optional[str] = None,
162
+ folder_path: Optional[str] = None,
163
+ ) -> Any:
131
164
  """Retrieve asynchronously context grounding index information by its ID.
132
165
 
133
166
  This method provides direct access to a context index using its unique
@@ -140,7 +173,11 @@ class ContextGroundingService(FolderContext, BaseService):
140
173
  Any: The index information, including its configuration and metadata.
141
174
 
142
175
  """
143
- spec = self._retrieve_by_id_spec(id)
176
+ spec = self._retrieve_by_id_spec(
177
+ id,
178
+ folder_key=folder_key,
179
+ folder_path=folder_path,
180
+ )
144
181
 
145
182
  response = await self.request_async(
146
183
  spec.method,
@@ -156,6 +193,8 @@ class ContextGroundingService(FolderContext, BaseService):
156
193
  name: str,
157
194
  query: str,
158
195
  number_of_results: int = 10,
196
+ folder_key: Optional[str] = None,
197
+ folder_path: Optional[str] = None,
159
198
  ) -> List[ContextGroundingQueryResponse]:
160
199
  """Search for contextual information within a specific index.
161
200
 
@@ -177,7 +216,13 @@ class ContextGroundingService(FolderContext, BaseService):
177
216
  if index and index.in_progress_ingestion():
178
217
  raise IngestionInProgressException(index_name=name)
179
218
 
180
- spec = self._search_spec(name, query, number_of_results)
219
+ spec = self._search_spec(
220
+ name,
221
+ query,
222
+ number_of_results,
223
+ folder_key=folder_key,
224
+ folder_path=folder_path,
225
+ )
181
226
 
182
227
  response = self.request(
183
228
  spec.method,
@@ -195,6 +240,8 @@ class ContextGroundingService(FolderContext, BaseService):
195
240
  name: str,
196
241
  query: str,
197
242
  number_of_results: int = 10,
243
+ folder_key: Optional[str] = None,
244
+ folder_path: Optional[str] = None,
198
245
  ) -> List[ContextGroundingQueryResponse]:
199
246
  """Search asynchronously for contextual information within a specific index.
200
247
 
@@ -212,10 +259,20 @@ class ContextGroundingService(FolderContext, BaseService):
212
259
  List[ContextGroundingQueryResponse]: A list of search results, each containing
213
260
  relevant contextual information and metadata.
214
261
  """
215
- index = self.retrieve(name)
262
+ index = self.retrieve(
263
+ name,
264
+ folder_key=folder_key,
265
+ folder_path=folder_path,
266
+ )
216
267
  if index and index.in_progress_ingestion():
217
268
  raise IngestionInProgressException(index_name=name)
218
- spec = self._search_spec(name, query, number_of_results)
269
+ spec = self._search_spec(
270
+ name,
271
+ query,
272
+ number_of_results,
273
+ folder_key=folder_key,
274
+ folder_path=folder_path,
275
+ )
219
276
 
220
277
  response = await self.request_async(
221
278
  spec.method,
@@ -236,6 +293,8 @@ class ContextGroundingService(FolderContext, BaseService):
236
293
  storage_bucket_name: str,
237
294
  file_name_glob: Optional[str] = None,
238
295
  storage_bucket_folder_path: Optional[str] = None,
296
+ folder_key: Optional[str] = None,
297
+ folder_path: Optional[str] = None,
239
298
  ) -> ContextGroundingIndex:
240
299
  spec = self._create_spec(
241
300
  name,
@@ -243,8 +302,14 @@ class ContextGroundingService(FolderContext, BaseService):
243
302
  storage_bucket_name,
244
303
  file_name_glob,
245
304
  storage_bucket_folder_path,
305
+ folder_key=folder_key,
306
+ folder_path=folder_path,
307
+ )
308
+ index = self.retrieve(
309
+ name=name,
310
+ folder_key=folder_key,
311
+ folder_path=folder_path,
246
312
  )
247
- index = self.retrieve(name=name)
248
313
  if index:
249
314
  return index
250
315
 
@@ -265,8 +330,14 @@ class ContextGroundingService(FolderContext, BaseService):
265
330
  storage_bucket_name: str,
266
331
  file_name_glob: Optional[str] = None,
267
332
  storage_bucket_folder_path: Optional[str] = None,
333
+ folder_key: Optional[str] = None,
334
+ folder_path: Optional[str] = None,
268
335
  ) -> ContextGroundingIndex:
269
- index = await self.retrieve_async(name=name)
336
+ index = await self.retrieve_async(
337
+ name=name,
338
+ folder_key=folder_key,
339
+ folder_path=folder_path,
340
+ )
270
341
  if index:
271
342
  return index
272
343
 
@@ -276,6 +347,8 @@ class ContextGroundingService(FolderContext, BaseService):
276
347
  storage_bucket_name,
277
348
  file_name_glob,
278
349
  storage_bucket_folder_path,
350
+ folder_key=folder_key,
351
+ folder_path=folder_path,
279
352
  )
280
353
  response = (
281
354
  await self.request_async(
@@ -288,10 +361,19 @@ class ContextGroundingService(FolderContext, BaseService):
288
361
  return ContextGroundingIndex.model_validate(response)
289
362
 
290
363
  @traced(run_type="uipath", hide_input=True, hide_output=True)
291
- def ingest_data(self, index: ContextGroundingIndex) -> None:
364
+ def ingest_data(
365
+ self,
366
+ index: ContextGroundingIndex,
367
+ folder_key: Optional[str] = None,
368
+ folder_path: Optional[str] = None,
369
+ ) -> None:
292
370
  if not index.id:
293
371
  return
294
- spec = self._ingest_spec(index.id)
372
+ spec = self._ingest_spec(
373
+ index.id,
374
+ folder_key=folder_key,
375
+ folder_path=folder_path,
376
+ )
295
377
  self.request(
296
378
  spec.method,
297
379
  spec.endpoint,
@@ -299,10 +381,19 @@ class ContextGroundingService(FolderContext, BaseService):
299
381
  )
300
382
 
301
383
  @traced(run_type="uipath", hide_input=True, hide_output=True)
302
- async def ingest_data_async(self, index: ContextGroundingIndex) -> None:
384
+ async def ingest_data_async(
385
+ self,
386
+ index: ContextGroundingIndex,
387
+ folder_key: Optional[str] = None,
388
+ folder_path: Optional[str] = None,
389
+ ) -> None:
303
390
  if not index.id:
304
391
  return
305
- spec = self._ingest_spec(index.id)
392
+ spec = self._ingest_spec(
393
+ index.id,
394
+ folder_key=folder_key,
395
+ folder_path=folder_path,
396
+ )
306
397
  await self.request_async(
307
398
  spec.method,
308
399
  spec.endpoint,
@@ -310,10 +401,19 @@ class ContextGroundingService(FolderContext, BaseService):
310
401
  )
311
402
 
312
403
  @traced(run_type="uipath", hide_input=True, hide_output=True)
313
- def delete_index(self, index: ContextGroundingIndex) -> None:
404
+ def delete_index(
405
+ self,
406
+ index: ContextGroundingIndex,
407
+ folder_key: Optional[str] = None,
408
+ folder_path: Optional[str] = None,
409
+ ) -> None:
314
410
  if not index.id:
315
411
  return
316
- spec = self._delete_by_id_spec(index.id)
412
+ spec = self._delete_by_id_spec(
413
+ index.id,
414
+ folder_key=folder_key,
415
+ folder_path=folder_path,
416
+ )
317
417
  self.request(
318
418
  spec.method,
319
419
  spec.endpoint,
@@ -321,10 +421,19 @@ class ContextGroundingService(FolderContext, BaseService):
321
421
  )
322
422
 
323
423
  @traced(run_type="uipath", hide_input=True, hide_output=True)
324
- async def delete_index_async(self, index: ContextGroundingIndex) -> None:
424
+ async def delete_index_async(
425
+ self,
426
+ index: ContextGroundingIndex,
427
+ folder_key: Optional[str] = None,
428
+ folder_path: Optional[str] = None,
429
+ ) -> None:
325
430
  if not index.id:
326
431
  return
327
- spec = self._delete_by_id_spec(index.id)
432
+ spec = self._delete_by_id_spec(
433
+ index.id,
434
+ folder_key=folder_key,
435
+ folder_path=folder_path,
436
+ )
328
437
  await self.request_async(
329
438
  spec.method,
330
439
  spec.endpoint,
@@ -346,16 +455,42 @@ class ContextGroundingService(FolderContext, BaseService):
346
455
 
347
456
  return self.folder_headers
348
457
 
349
- def _ingest_spec(self, key: str) -> RequestSpec:
458
+ def _ingest_spec(
459
+ self,
460
+ key: str,
461
+ folder_key: Optional[str] = None,
462
+ folder_path: Optional[str] = None,
463
+ ) -> RequestSpec:
464
+ if folder_key is None and folder_path is not None:
465
+ folder_key = self._folders_service.retrieve_key_by_folder_path(folder_path)
466
+ folder_path = None
467
+
350
468
  return RequestSpec(
351
- method="POST", endpoint=Endpoint(f"/ecs_/v2/indexes/{key}/ingest")
469
+ method="POST",
470
+ endpoint=Endpoint(f"/ecs_/v2/indexes/{key}/ingest"),
471
+ headers={
472
+ **header_folder(folder_key, folder_path),
473
+ },
352
474
  )
353
475
 
354
- def _retrieve_spec(self, name: str) -> RequestSpec:
476
+ def _retrieve_spec(
477
+ self,
478
+ name: str,
479
+ folder_key: Optional[str] = None,
480
+ folder_path: Optional[str] = None,
481
+ ) -> RequestSpec:
482
+ print(folder_key, folder_path)
483
+ if folder_key is None and folder_path is not None:
484
+ folder_key = self._folders_service.retrieve_key_by_folder_path(folder_path)
485
+ folder_path = None
486
+ print("~~~", name, folder_key, folder_path)
355
487
  return RequestSpec(
356
488
  method="GET",
357
489
  endpoint=Endpoint("/ecs_/v2/indexes"),
358
490
  params={"$filter": f"Name eq '{name}'"},
491
+ headers={
492
+ **header_folder(folder_key, folder_path),
493
+ },
359
494
  )
360
495
 
361
496
  def _create_spec(
@@ -365,7 +500,13 @@ class ContextGroundingService(FolderContext, BaseService):
365
500
  storage_bucket_name: Optional[str],
366
501
  file_name_glob: Optional[str],
367
502
  storage_bucket_folder_path: Optional[str],
503
+ folder_key: Optional[str] = None,
504
+ folder_path: Optional[str] = None,
368
505
  ) -> RequestSpec:
506
+ if folder_key is None and folder_path is not None:
507
+ folder_key = self._folders_service.retrieve_key_by_folder_path(folder_path)
508
+ folder_path = None
509
+
369
510
  storage_bucket_folder_path = (
370
511
  storage_bucket_folder_path
371
512
  if storage_bucket_folder_path
@@ -389,23 +530,59 @@ class ContextGroundingService(FolderContext, BaseService):
389
530
  },
390
531
  }
391
532
  ),
533
+ headers={
534
+ **header_folder(folder_key, folder_path),
535
+ },
392
536
  )
393
537
 
394
- def _retrieve_by_id_spec(self, id: str) -> RequestSpec:
538
+ def _retrieve_by_id_spec(
539
+ self,
540
+ id: str,
541
+ folder_key: Optional[str] = None,
542
+ folder_path: Optional[str] = None,
543
+ ) -> RequestSpec:
544
+ if folder_key is None and folder_path is not None:
545
+ folder_key = self._folders_service.retrieve_key_by_folder_path(folder_path)
546
+ folder_path = None
547
+
395
548
  return RequestSpec(
396
549
  method="GET",
397
550
  endpoint=Endpoint(f"/ecs_/v2/indexes/{id}"),
551
+ headers={
552
+ **header_folder(folder_key, folder_path),
553
+ },
398
554
  )
399
555
 
400
- def _delete_by_id_spec(self, id: str) -> RequestSpec:
556
+ def _delete_by_id_spec(
557
+ self,
558
+ id: str,
559
+ folder_key: Optional[str] = None,
560
+ folder_path: Optional[str] = None,
561
+ ) -> RequestSpec:
562
+ if folder_key is None and folder_path is not None:
563
+ folder_key = self._folders_service.retrieve_key_by_folder_path(folder_path)
564
+ folder_path = None
565
+
401
566
  return RequestSpec(
402
567
  method="DELETE",
403
568
  endpoint=Endpoint(f"/ecs_/v2/indexes/{id}"),
569
+ headers={
570
+ **header_folder(folder_key, folder_path),
571
+ },
404
572
  )
405
573
 
406
574
  def _search_spec(
407
- self, name: str, query: str, number_of_results: int = 10
575
+ self,
576
+ name: str,
577
+ query: str,
578
+ number_of_results: int = 10,
579
+ folder_key: Optional[str] = None,
580
+ folder_path: Optional[str] = None,
408
581
  ) -> RequestSpec:
582
+ if folder_key is None and folder_path is not None:
583
+ folder_key = self._folders_service.retrieve_key_by_folder_path(folder_path)
584
+ folder_path = None
585
+
409
586
  return RequestSpec(
410
587
  method="POST",
411
588
  endpoint=Endpoint("/ecs_/v1/search"),
@@ -415,4 +592,7 @@ class ContextGroundingService(FolderContext, BaseService):
415
592
  "schema": {"name": name},
416
593
  }
417
594
  ),
595
+ headers={
596
+ **header_folder(folder_key, folder_path),
597
+ },
418
598
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath
3
- Version: 2.0.15
3
+ Version: 2.0.17
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
@@ -10,14 +10,14 @@ uipath/_cli/cli_auth.py,sha256=ANaYUc2q1t0hDbGBRT3ags6K6Lef_3tyC8Mmc611jow,3141
10
10
  uipath/_cli/cli_deploy.py,sha256=h8qwJkXnW6JURsg4YcocJInGA4dwkl4CZkpT1Cn9A3c,268
11
11
  uipath/_cli/cli_init.py,sha256=idoqlGhhzXZKmLAg-3JgZ2fYMrK7qFXYV0EhnNaI3bg,3738
12
12
  uipath/_cli/cli_new.py,sha256=SP7eWOa5valmCpc8UsOCIezL25euhglB3yJkx-N92W8,1903
13
- uipath/_cli/cli_pack.py,sha256=x7Je61NYzR7CR8TUoT-xeZMrXXFAsXO9PGFDUVfBU8s,12876
13
+ uipath/_cli/cli_pack.py,sha256=Do7ZjcHJrfeCCs9SUCpL9AW-Bdaryy6CWVInIzAsMLc,12918
14
14
  uipath/_cli/cli_publish.py,sha256=_b9rehjsbxwkpH5_DtgFUaWWJqcZTg5nate-M5BnE_c,3586
15
15
  uipath/_cli/cli_run.py,sha256=B5L7fE2IqysIEcweedU8GEy7ekMGwpeRagYBCB_cdQI,4597
16
16
  uipath/_cli/middlewares.py,sha256=IiJgjsqrJVKSXx4RcIKHWoH-SqWqpHPbhzkQEybmAos,3937
17
17
  uipath/_cli/_auth/_auth_server.py,sha256=vrzrE-hDx8exM5p2sFVoT9vKMblOyFWUvFXz-lTXceY,7077
18
18
  uipath/_cli/_auth/_models.py,sha256=sYMCfvmprIqnZxStlD_Dxx2bcxgn0Ri4D7uwemwkcNg,948
19
19
  uipath/_cli/_auth/_oidc_utils.py,sha256=WaX9jDlXrlX6yD8i8gsocV8ngjaT72Xd1tvsZMmSbco,2127
20
- uipath/_cli/_auth/_portal_service.py,sha256=I7uCdtd0GCGD5DvsHGaQGksLBLBeFS1el-atKVs0oo8,5993
20
+ uipath/_cli/_auth/_portal_service.py,sha256=YPL-_Z9oVK-VjQ67m31-t3y3uvNnPl_qubU-m4zlHMU,6042
21
21
  uipath/_cli/_auth/_utils.py,sha256=9nb76xe5XmDZ0TAncp-_1SKqL6FdwRi9eS3C2noN1lY,1591
22
22
  uipath/_cli/_auth/auth_config.json,sha256=NTb_ZZor5xEgya2QbK51GiTL5_yVqG_QpV4VYIp8_mk,342
23
23
  uipath/_cli/_auth/index.html,sha256=ML_xDOcKs0ETYucufJskiYfWSvdrD_E26C0Qd3qpGj8,6280
@@ -42,7 +42,7 @@ uipath/_services/assets_service.py,sha256=UUWzQiYruNAWk3P8qPrccDDWRUD_ycfqf3eRM-
42
42
  uipath/_services/buckets_service.py,sha256=h1Rx9H4XV2cxIZ1xIcYjNYFa1YZEHgIhQpQ10jZIinU,9154
43
43
  uipath/_services/connections_service.py,sha256=5impJ5O0Wj2n0-RYnwI1TfOPAp5JStFwTjn_yCGySE8,7154
44
44
  uipath/_services/connections_service.pyi,sha256=6OOnh0aCfxhETL8n_JZ6Xoe2BE3ST_7Vz-FgLZc53lM,2465
45
- uipath/_services/context_grounding_service.py,sha256=reEMo9vMJLjo-gAsJH7wL7PMD5O1lK_0PYoLnKRRnug,14201
45
+ uipath/_services/context_grounding_service.py,sha256=ts5VhjWBkl7YFBBWk2Dr0otENikYVBYYtxcdW9FWtRo,19255
46
46
  uipath/_services/folder_service.py,sha256=CBrEPjHFg6zAaNBbpcdrqaoPZWbgpTzWtAVz04J39mY,1630
47
47
  uipath/_services/jobs_service.py,sha256=IpsqXo0QAjUK8AdA_pSMu2g9ncPccNxHh-yMF-Gy58I,8229
48
48
  uipath/_services/llm_gateway_service.py,sha256=I1WcpIVWAMkkkY7uT_EU8Mqc_53LbRlo40GvSxNfiXg,12062
@@ -73,8 +73,8 @@ uipath/tracing/__init__.py,sha256=GimSzv6qkCOlHOG1WtjYKJsZqcXpA28IgoXfR33JhiA,13
73
73
  uipath/tracing/_otel_exporters.py,sha256=x0PDPmDKJcxashsuehVsSsqBCzRr6WsNFaq_3_HS5F0,3014
74
74
  uipath/tracing/_traced.py,sha256=9nEjFjGuxPlJ_4OXoClJ79xcbFK6C8iyI03kQQSDaJg,14834
75
75
  uipath/tracing/_utils.py,sha256=5SwsTGpHkIouXBndw-u8eCLnN4p7LM8DsTCCuf2jJgs,10165
76
- uipath-2.0.15.dist-info/METADATA,sha256=_UQmbebHY9fYHwgZlLJWiBpKFnm-EokoN4wFmI-BJXg,6078
77
- uipath-2.0.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
78
- uipath-2.0.15.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
79
- uipath-2.0.15.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
80
- uipath-2.0.15.dist-info/RECORD,,
76
+ uipath-2.0.17.dist-info/METADATA,sha256=0RybLwJVTvKnqXpJFhZ2wTEhKqH37yubgoBeSL6gm9w,6078
77
+ uipath-2.0.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
78
+ uipath-2.0.17.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
79
+ uipath-2.0.17.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
80
+ uipath-2.0.17.dist-info/RECORD,,