Skip to content

Commit feb7340

Browse files
fix: update version
1 parent 94c30aa commit feb7340

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[project]
22
name = "uipath"
33
version = "2.6.0"
4+
45
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
56
readme = { file = "README.md", content-type = "text/markdown" }
67
requires-python = ">=3.11"

src/uipath/platform/context_grounding/_context_grounding_service.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,11 @@ def retrieve_by_id(
297297
Returns:
298298
Any: The index information, including its configuration and metadata.
299299
"""
300-
spec = self._retrieve_by_id_spec(id)
300+
spec = self._retrieve_by_id_spec(
301+
id,
302+
folder_key=folder_key,
303+
folder_path=folder_path,
304+
)
301305

302306
return self.request(
303307
spec.method,
@@ -325,7 +329,11 @@ async def retrieve_by_id_async(
325329
Returns:
326330
Any: The index information, including its configuration and metadata.
327331
"""
328-
spec = self._retrieve_by_id_spec(id)
332+
spec = self._retrieve_by_id_spec(
333+
id,
334+
folder_key=folder_key,
335+
folder_path=folder_path,
336+
)
329337

330338
response = await self.request_async(
331339
spec.method,
@@ -1368,6 +1376,7 @@ def _retrieve_by_id_spec(
13681376
folder_path: Optional[str] = None,
13691377
) -> RequestSpec:
13701378
folder_key = self._resolve_folder_key(folder_key, folder_path)
1379+
13711380
return RequestSpec(
13721381
method="GET",
13731382
endpoint=Endpoint(f"/ecs_/v2/indexes/{id}"),

uv.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)