Skip to content

Commit 0842371

Browse files
authored
Merge pull request #1001 from UiPath/feat/add-batch-rag
feat: add ecs batch transform support
2 parents e59bd33 + 66a0da5 commit 0842371

File tree

8 files changed

+883
-22
lines changed

8 files changed

+883
-22
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.2.26"
3+
version = "2.2.27"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/platform/context_grounding/__init__.py

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
from ._context_grounding_service import ContextGroundingService
44
from .context_grounding import (
5+
BatchTransformCreationResponse,
6+
BatchTransformOutputColumn,
7+
BatchTransformResponse,
8+
BatchTransformStatus,
59
CitationMode,
610
ContextGroundingQueryResponse,
711
DeepRagCreationResponse,
@@ -29,16 +33,24 @@
2933
)
3034

3135
__all__ = [
32-
"ContextGroundingService",
33-
"ContextGroundingQueryResponse",
34-
"ContextGroundingIndex",
36+
"BatchTransformCreationResponse",
37+
"BatchTransformOutputColumn",
38+
"BatchTransformResponse",
39+
"BatchTransformStatus",
3540
"BaseSourceConfig",
3641
"BucketDataSource",
3742
"BucketSourceConfig",
43+
"CitationMode",
3844
"ConfluenceDataSource",
3945
"ConfluenceSourceConfig",
4046
"ConnectionSourceConfig",
47+
"ContextGroundingIndex",
48+
"ContextGroundingQueryResponse",
49+
"ContextGroundingService",
4150
"CreateIndexPayload",
51+
"DeepRagCreationResponse",
52+
"DeepRagResponse",
53+
"DeepRagStatus",
4254
"DropboxDataSource",
4355
"DropboxSourceConfig",
4456
"GoogleDriveDataSource",
@@ -48,8 +60,4 @@
4860
"OneDriveSourceConfig",
4961
"PreProcessing",
5062
"SourceConfig",
51-
"CitationMode",
52-
"DeepRagCreationResponse",
53-
"DeepRagStatus",
54-
"DeepRagResponse",
5563
]

0 commit comments

Comments
 (0)