We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b596eb9 commit 3075030Copy full SHA for 3075030
src/uipath/_services/context_grounding_service.py
@@ -3,6 +3,7 @@
3
4
import httpx
5
from pydantic import TypeAdapter
6
+from typing_extensions import deprecated
7
8
from .._config import Config
9
from .._execution_context import ExecutionContext
@@ -234,6 +235,7 @@ async def retrieve_async(
234
235
raise Exception("ContextGroundingIndex not found") from e
236
237
@traced(name="contextgrounding_retrieve_by_id", run_type="uipath")
238
+ @deprecated("Use retrieve instead")
239
def retrieve_by_id(
240
self,
241
id: str,
@@ -266,6 +268,7 @@ def retrieve_by_id(
266
268
).json()
267
269
270
271
+ @deprecated("Use retrieve_async instead")
272
async def retrieve_by_id_async(
273
274
0 commit comments