uipath 2.0.0.dev2__py3-none-any.whl → 2.0.1.dev1__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.

Files changed (76) hide show
  1. uipath/__init__.py +24 -0
  2. uipath/_cli/README.md +11 -0
  3. uipath/_cli/__init__.py +54 -0
  4. uipath/_cli/_auth/_auth_server.py +165 -0
  5. uipath/_cli/_auth/_models.py +51 -0
  6. uipath/_cli/_auth/_oidc_utils.py +69 -0
  7. uipath/_cli/_auth/_portal_service.py +163 -0
  8. uipath/_cli/_auth/_utils.py +51 -0
  9. uipath/_cli/_auth/auth_config.json +6 -0
  10. uipath/_cli/_auth/index.html +167 -0
  11. uipath/_cli/_auth/localhost.crt +25 -0
  12. uipath/_cli/_auth/localhost.key +27 -0
  13. uipath/_cli/_runtime/_contracts.py +429 -0
  14. uipath/_cli/_runtime/_logging.py +193 -0
  15. uipath/_cli/_runtime/_runtime.py +264 -0
  16. uipath/_cli/_templates/.psmdcp.template +9 -0
  17. uipath/_cli/_templates/.rels.template +5 -0
  18. uipath/_cli/_templates/[Content_Types].xml.template +9 -0
  19. uipath/_cli/_templates/main.py.template +25 -0
  20. uipath/_cli/_templates/package.nuspec.template +10 -0
  21. uipath/_cli/_utils/_common.py +24 -0
  22. uipath/_cli/_utils/_input_args.py +126 -0
  23. uipath/_cli/_utils/_parse_ast.py +542 -0
  24. uipath/_cli/cli_auth.py +97 -0
  25. uipath/_cli/cli_deploy.py +13 -0
  26. uipath/_cli/cli_init.py +113 -0
  27. uipath/_cli/cli_new.py +76 -0
  28. uipath/_cli/cli_pack.py +337 -0
  29. uipath/_cli/cli_publish.py +113 -0
  30. uipath/_cli/cli_run.py +133 -0
  31. uipath/_cli/middlewares.py +113 -0
  32. uipath/_config.py +6 -0
  33. uipath/_execution_context.py +83 -0
  34. uipath/_folder_context.py +62 -0
  35. uipath/_models/__init__.py +37 -0
  36. uipath/_models/action_schema.py +26 -0
  37. uipath/_models/actions.py +64 -0
  38. uipath/_models/assets.py +48 -0
  39. uipath/_models/connections.py +51 -0
  40. uipath/_models/context_grounding.py +18 -0
  41. uipath/_models/context_grounding_index.py +60 -0
  42. uipath/_models/exceptions.py +6 -0
  43. uipath/_models/interrupt_models.py +28 -0
  44. uipath/_models/job.py +66 -0
  45. uipath/_models/llm_gateway.py +101 -0
  46. uipath/_models/processes.py +48 -0
  47. uipath/_models/queues.py +167 -0
  48. uipath/_services/__init__.py +26 -0
  49. uipath/_services/_base_service.py +250 -0
  50. uipath/_services/actions_service.py +271 -0
  51. uipath/_services/api_client.py +89 -0
  52. uipath/_services/assets_service.py +257 -0
  53. uipath/_services/buckets_service.py +268 -0
  54. uipath/_services/connections_service.py +185 -0
  55. uipath/_services/connections_service.pyi +50 -0
  56. uipath/_services/context_grounding_service.py +402 -0
  57. uipath/_services/folder_service.py +49 -0
  58. uipath/_services/jobs_service.py +265 -0
  59. uipath/_services/llm_gateway_service.py +311 -0
  60. uipath/_services/processes_service.py +168 -0
  61. uipath/_services/queues_service.py +314 -0
  62. uipath/_uipath.py +98 -0
  63. uipath/_utils/__init__.py +17 -0
  64. uipath/_utils/_endpoint.py +79 -0
  65. uipath/_utils/_infer_bindings.py +30 -0
  66. uipath/_utils/_logs.py +15 -0
  67. uipath/_utils/_request_override.py +18 -0
  68. uipath/_utils/_request_spec.py +23 -0
  69. uipath/_utils/_user_agent.py +16 -0
  70. uipath/_utils/constants.py +25 -0
  71. uipath/py.typed +0 -0
  72. {uipath-2.0.0.dev2.dist-info → uipath-2.0.1.dev1.dist-info}/METADATA +2 -3
  73. uipath-2.0.1.dev1.dist-info/RECORD +75 -0
  74. uipath-2.0.0.dev2.dist-info/RECORD +0 -4
  75. {uipath-2.0.0.dev2.dist-info → uipath-2.0.1.dev1.dist-info}/WHEEL +0 -0
  76. {uipath-2.0.0.dev2.dist-info → uipath-2.0.1.dev1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,60 @@
1
+ from datetime import datetime
2
+ from typing import Any, List, Optional
3
+
4
+ from pydantic import BaseModel, ConfigDict, Field
5
+
6
+
7
+ class ContextGroundingField(BaseModel):
8
+ id: Optional[str] = Field(default=None, alias="id")
9
+ name: Optional[str] = Field(default=None, alias="name")
10
+ description: Optional[str] = Field(default=None, alias="description")
11
+ type: Optional[str] = Field(default=None, alias="type")
12
+ is_filterable: Optional[bool] = Field(default=None, alias="isFilterable")
13
+ searchable_type: Optional[str] = Field(default=None, alias="searchableType")
14
+ is_user_defined: Optional[bool] = Field(default=None, alias="isUserDefined")
15
+
16
+
17
+ class ContextGroundingDataSource(BaseModel):
18
+ model_config = ConfigDict(
19
+ validate_by_name=True,
20
+ validate_by_alias=True,
21
+ use_enum_values=True,
22
+ arbitrary_types_allowed=True,
23
+ extra="allow",
24
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
25
+ )
26
+ id: Optional[str] = Field(default=None, alias="id")
27
+ folder: Optional[str] = Field(default=None, alias="folder")
28
+
29
+
30
+ class ContextGroundingIndex(BaseModel):
31
+ model_config = ConfigDict(
32
+ validate_by_name=True,
33
+ validate_by_alias=True,
34
+ use_enum_values=True,
35
+ arbitrary_types_allowed=True,
36
+ extra="allow",
37
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
38
+ )
39
+ id: Optional[str] = Field(default=None, alias="id")
40
+ name: Optional[str] = Field(default=None, alias="name")
41
+ description: Optional[str] = Field(default=None, alias="description")
42
+ memory_usage: Optional[int] = Field(default=None, alias="memoryUsage")
43
+ disk_usage: Optional[int] = Field(default=None, alias="diskUsage")
44
+ data_source: Optional[ContextGroundingDataSource] = Field(
45
+ default=None, alias="dataSource"
46
+ )
47
+ pre_processing: Any = Field(default=None, alias="preProcessing")
48
+ fields: Optional[List[ContextGroundingField]] = Field(default=None, alias="fields")
49
+ last_ingestion_status: Optional[str] = Field(
50
+ default=None, alias="lastIngestionStatus"
51
+ )
52
+ last_ingested: Optional[datetime] = Field(default=None, alias="lastIngested")
53
+ last_queried: Optional[datetime] = Field(default=None, alias="lastQueried")
54
+ folder_key: Optional[str] = Field(default=None, alias="folderKey")
55
+
56
+ def in_progress_ingestion(self):
57
+ return (
58
+ self.last_ingestion_status == "Queued"
59
+ or self.last_ingestion_status == "In Progress"
60
+ )
@@ -0,0 +1,6 @@
1
+ class IngestionInProgressException(Exception):
2
+ """An exception that is triggered when a search is attempted on an index that is currently undergoing ingestion."""
3
+
4
+ def __init__(self, index_name):
5
+ self.message = f"index {index_name} cannot be searched during ingestion"
6
+ super().__init__(self.message)
@@ -0,0 +1,28 @@
1
+ from typing import Any, Dict, Optional
2
+
3
+ from pydantic import BaseModel
4
+
5
+ from .actions import Action
6
+ from .job import Job
7
+
8
+
9
+ class InvokeProcess(BaseModel):
10
+ name: str
11
+ input_arguments: Optional[Dict[str, Any]]
12
+
13
+
14
+ class WaitJob(BaseModel):
15
+ job: Job
16
+
17
+
18
+ class CreateAction(BaseModel):
19
+ name: Optional[str] = None
20
+ key: Optional[str] = None
21
+ title: str
22
+ data: Optional[Dict[str, Any]] = None
23
+ app_version: Optional[int] = 1
24
+ assignee: Optional[str] = ""
25
+
26
+
27
+ class WaitAction(BaseModel):
28
+ action: Action
uipath/_models/job.py ADDED
@@ -0,0 +1,66 @@
1
+ from datetime import datetime
2
+ from typing import Any, Dict, Optional
3
+
4
+ from pydantic import BaseModel, ConfigDict, Field
5
+
6
+
7
+ class JobErrorInfo(BaseModel):
8
+ model_config = ConfigDict(
9
+ validate_by_name=True,
10
+ validate_by_alias=True,
11
+ use_enum_values=True,
12
+ arbitrary_types_allowed=True,
13
+ extra="allow",
14
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
15
+ )
16
+
17
+ code: Optional[str] = Field(default=None, alias="Code")
18
+ title: Optional[str] = Field(default=None, alias="Title")
19
+ detail: Optional[str] = Field(default=None, alias="Detail")
20
+ category: Optional[str] = Field(default=None, alias="Category")
21
+ status: Optional[str] = Field(default=None, alias="Status")
22
+
23
+
24
+ class Job(BaseModel):
25
+ model_config = ConfigDict(
26
+ validate_by_name=True,
27
+ validate_by_alias=True,
28
+ use_enum_values=True,
29
+ arbitrary_types_allowed=True,
30
+ extra="allow",
31
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
32
+ )
33
+
34
+ key: Optional[str] = Field(default=None, alias="Key")
35
+ start_time: Optional[str] = Field(default=None, alias="StartTime")
36
+ end_time: Optional[str] = Field(default=None, alias="EndTime")
37
+ state: Optional[str] = Field(default=None, alias="State")
38
+ job_priority: Optional[str] = Field(default=None, alias="JobPriority")
39
+ specific_priority_value: Optional[int] = Field(
40
+ default=None, alias="SpecificPriorityValue"
41
+ )
42
+ robot: Optional[Dict[str, Any]] = Field(default=None, alias="Robot")
43
+ release: Optional[Dict[str, Any]] = Field(default=None, alias="Release")
44
+ resource_overwrites: Optional[str] = Field(default=None, alias="ResourceOverwrites")
45
+ source: Optional[str] = Field(default=None, alias="Source")
46
+ source_type: Optional[str] = Field(default=None, alias="SourceType")
47
+ batch_execution_key: Optional[str] = Field(default=None, alias="BatchExecutionKey")
48
+ info: Optional[str] = Field(default=None, alias="Info")
49
+ creation_time: Optional[str] = Field(default=None, alias="CreationTime")
50
+ creator_user_id: Optional[int] = Field(default=None, alias="CreatorUserId")
51
+ last_modification_time: Optional[str] = Field(
52
+ default=None, alias="LastModificationTime"
53
+ )
54
+ last_modifier_user_id: Optional[int] = Field(
55
+ default=None, alias="LastModifierUserId"
56
+ )
57
+ deletion_time: Optional[str] = Field(default=None, alias="DeletionTime")
58
+ deleter_user_id: Optional[int] = Field(default=None, alias="DeleterUserId")
59
+ is_deleted: Optional[bool] = Field(default=None, alias="IsDeleted")
60
+ input_arguments: Optional[str] = Field(default=None, alias="InputArguments")
61
+ output_arguments: Optional[str] = Field(default=None, alias="OutputArguments")
62
+ host_machine_name: Optional[str] = Field(default=None, alias="HostMachineName")
63
+ has_errors: Optional[bool] = Field(default=None, alias="HasErrors")
64
+ has_warnings: Optional[bool] = Field(default=None, alias="HasWarnings")
65
+ job_error: Optional[JobErrorInfo] = Field(default=None, alias="JobError")
66
+ id: int = Field(alias="Id")
@@ -0,0 +1,101 @@
1
+ from typing import Any, Dict, List, Literal, Optional, Union
2
+
3
+ from pydantic import BaseModel
4
+
5
+
6
+ class EmbeddingItem(BaseModel):
7
+ embedding: List[float]
8
+ index: int
9
+ object: str
10
+
11
+
12
+ class EmbeddingUsage(BaseModel):
13
+ prompt_tokens: int
14
+ total_tokens: int
15
+
16
+
17
+ class TextEmbedding(BaseModel):
18
+ data: List[EmbeddingItem]
19
+ model: str
20
+ object: str
21
+ usage: EmbeddingUsage
22
+
23
+
24
+ class UsageInfo(BaseModel):
25
+ encoding: str
26
+ prompt_tokens: int
27
+
28
+
29
+ class ToolCall(BaseModel):
30
+ id: str
31
+ name: str
32
+ arguments: Dict[str, Any]
33
+
34
+
35
+ class ToolPropertyDefinition(BaseModel):
36
+ type: str
37
+ description: Optional[str] = None
38
+ enum: Optional[List[str]] = None
39
+
40
+
41
+ class ToolParametersDefinition(BaseModel):
42
+ type: str = "object"
43
+ properties: Dict[str, ToolPropertyDefinition]
44
+ required: Optional[List[str]] = None
45
+
46
+
47
+ class ToolFunctionDefinition(BaseModel):
48
+ name: str
49
+ description: Optional[str] = None
50
+ parameters: ToolParametersDefinition
51
+
52
+
53
+ class ToolDefinition(BaseModel):
54
+ type: Literal["function"] = "function"
55
+ function: ToolFunctionDefinition
56
+
57
+
58
+ class AutoToolChoice(BaseModel):
59
+ type: Literal["auto"] = "auto"
60
+
61
+
62
+ class RequiredToolChoice(BaseModel):
63
+ type: Literal["required"] = "required"
64
+
65
+
66
+ class SpecificToolChoice(BaseModel):
67
+ type: Literal["tool"] = "tool"
68
+ name: str
69
+
70
+
71
+ ToolChoice = Union[
72
+ AutoToolChoice, RequiredToolChoice, SpecificToolChoice, Literal["auto", "none"]
73
+ ]
74
+
75
+
76
+ class ChatMessage(BaseModel):
77
+ role: str
78
+ content: Optional[str] = None
79
+ tool_calls: Optional[List[ToolCall]] = None
80
+
81
+
82
+ class ChatCompletionChoice(BaseModel):
83
+ index: int
84
+ message: ChatMessage
85
+ finish_reason: str
86
+
87
+
88
+ class ChatCompletionUsage(BaseModel):
89
+ prompt_tokens: int
90
+ completion_tokens: int
91
+ total_tokens: int
92
+ cache_read_input_tokens: Optional[int] = None
93
+
94
+
95
+ class ChatCompletion(BaseModel):
96
+ id: str
97
+ object: str
98
+ created: int
99
+ model: str
100
+ choices: List[ChatCompletionChoice]
101
+ usage: ChatCompletionUsage
@@ -0,0 +1,48 @@
1
+ from datetime import datetime
2
+ from typing import Any, Dict, List, Optional
3
+
4
+ from pydantic import BaseModel, ConfigDict, Field
5
+
6
+
7
+ class Process(BaseModel):
8
+ model_config = ConfigDict(
9
+ validate_by_name=True,
10
+ validate_by_alias=True,
11
+ use_enum_values=True,
12
+ arbitrary_types_allowed=True,
13
+ extra="allow",
14
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
15
+ )
16
+
17
+ key: str = Field(alias="Key")
18
+ process_key: str = Field(alias="ProcessKey")
19
+ process_version: str = Field(alias="ProcessVersion")
20
+ is_latest_version: bool = Field(alias="IsLatestVersion")
21
+ is_process_deleted: bool = Field(alias="IsProcessDeleted")
22
+ description: str = Field(alias="Description")
23
+ name: str = Field(alias="Name")
24
+ environment_variables: Optional[str] = Field(
25
+ default=None, alias="EnvironmentVariables"
26
+ )
27
+ process_type: str = Field(alias="ProcessType")
28
+ requires_user_interaction: bool = Field(alias="RequiresUserInteraction")
29
+ is_attended: bool = Field(alias="IsAttended")
30
+ is_compiled: bool = Field(alias="IsCompiled")
31
+ feed_id: str = Field(alias="FeedId")
32
+ job_priority: str = Field(alias="JobPriority")
33
+ specific_priority_value: int = Field(alias="SpecificPriorityValue")
34
+ target_framework: str = Field(alias="TargetFramework")
35
+ id: int = Field(alias="Id")
36
+ retention_action: str = Field(alias="RetentionAction")
37
+ retention_period: int = Field(alias="RetentionPeriod")
38
+ stale_retention_action: str = Field(alias="StaleRetentionAction")
39
+ stale_retention_period: int = Field(alias="StaleRetentionPeriod")
40
+ arguments: Optional[Dict[str, Optional[Any]]] = Field(
41
+ default=None, alias="Arguments"
42
+ )
43
+ tags: List[str] = Field(alias="Tags")
44
+ environment: Optional[str] = Field(default=None, alias="Environment")
45
+ current_version: Optional[Dict[str, Any]] = Field(
46
+ default=None, alias="CurrentVersion"
47
+ )
48
+ entry_point: Optional[Dict[str, Any]] = Field(default=None, alias="EntryPoint")
@@ -0,0 +1,167 @@
1
+ from datetime import datetime
2
+ from enum import Enum
3
+ from typing import Any, Dict, Optional
4
+
5
+ from pydantic import BaseModel, ConfigDict, Field
6
+ from typing_extensions import Annotated
7
+
8
+
9
+ class QueueItemPriority(Enum):
10
+ LOW = "Low"
11
+ MEDIUM = "Medium"
12
+ HIGH = "High"
13
+
14
+
15
+ class CommitType(Enum):
16
+ ALL_OR_NOTHING = "AllOrNothing"
17
+ STOP_ON_FIRST_FAILURE = "StopOnFirstFailure"
18
+ PROCESS_ALL_INDEPENDENTLY = "ProcessAllIndependently"
19
+
20
+
21
+ class QueueItem(BaseModel):
22
+ model_config = ConfigDict(
23
+ validate_by_name=True,
24
+ validate_by_alias=True,
25
+ use_enum_values=True,
26
+ arbitrary_types_allowed=True,
27
+ extra="allow",
28
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
29
+ )
30
+
31
+ name: str = Field(
32
+ description="The name of the queue into which the item will be added.",
33
+ alias="Name",
34
+ )
35
+ priority: Optional[QueueItemPriority] = Field(
36
+ default=None,
37
+ description="Sets the processing importance for a given item.",
38
+ alias="Priority",
39
+ )
40
+ specific_content: Optional[Dict[str, Any]] = Field(
41
+ default=None,
42
+ description="A collection of key value pairs containing custom data configured in the Add Queue Item activity, in UiPath Studio.",
43
+ alias="SpecificContent",
44
+ )
45
+ defer_date: Optional[datetime] = Field(
46
+ default=None,
47
+ description="The earliest date and time at which the item is available for processing. If empty the item can be processed as soon as possible.",
48
+ alias="DeferDate",
49
+ )
50
+ due_date: Optional[datetime] = Field(
51
+ default=None,
52
+ description="The latest date and time at which the item should be processed. If empty the item can be processed at any given time.",
53
+ alias="DueDate",
54
+ )
55
+ risk_sla_date: Optional[datetime] = Field(
56
+ default=None,
57
+ description="The RiskSla date at time which is considered as risk zone for the item to be processed.",
58
+ alias="RiskSlaDate",
59
+ )
60
+ progress: Optional[str] = Field(
61
+ default=None,
62
+ description="String field which is used to keep track of the business flow progress.",
63
+ alias="Progress",
64
+ )
65
+ source: Optional[
66
+ Annotated[str, Field(min_length=0, strict=True, max_length=20)]
67
+ ] = Field(default=None, description="The Source type of the item.", alias="Source")
68
+ parent_operation_id: Optional[
69
+ Annotated[str, Field(min_length=0, strict=True, max_length=128)]
70
+ ] = Field(
71
+ default=None,
72
+ description="Operation id which started the job.",
73
+ alias="ParentOperationId",
74
+ )
75
+
76
+
77
+ class TransactionItem(BaseModel):
78
+ model_config = ConfigDict(
79
+ validate_by_name=True,
80
+ validate_by_alias=True,
81
+ use_enum_values=True,
82
+ arbitrary_types_allowed=True,
83
+ extra="allow",
84
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
85
+ )
86
+
87
+ name: str = Field(
88
+ description="The name of the queue in which to search for the next item or in which to insert the item before marking it as InProgress and sending it to the robot.",
89
+ alias="Name",
90
+ )
91
+ robot_identifier: Optional[str] = Field(
92
+ default=None,
93
+ description="The unique key identifying the robot that sent the request.",
94
+ alias="RobotIdentifier",
95
+ )
96
+ specific_content: Optional[Dict[str, Any]] = Field(
97
+ default=None,
98
+ description="If not null a new item will be added to the queue with this content before being moved to InProgress state and returned to the robot for processing. <para />If null the next available item in the list will be moved to InProgress state and returned to the robot for processing.",
99
+ alias="SpecificContent",
100
+ )
101
+ defer_date: Optional[datetime] = Field(
102
+ default=None,
103
+ description="The earliest date and time at which the item is available for processing. If empty the item can be processed as soon as possible.",
104
+ alias="DeferDate",
105
+ )
106
+ due_date: Optional[datetime] = Field(
107
+ default=None,
108
+ description="The latest date and time at which the item should be processed. If empty the item can be processed at any given time.",
109
+ alias="DueDate",
110
+ )
111
+ parent_operation_id: Optional[
112
+ Annotated[str, Field(min_length=0, strict=True, max_length=128)]
113
+ ] = Field(
114
+ default=None,
115
+ description="Operation id which created the queue item.",
116
+ alias="ParentOperationId",
117
+ )
118
+
119
+
120
+ class TransactionItemResult(BaseModel):
121
+ model_config = ConfigDict(
122
+ validate_by_name=True,
123
+ validate_by_alias=True,
124
+ use_enum_values=True,
125
+ arbitrary_types_allowed=True,
126
+ extra="allow",
127
+ json_encoders={datetime: lambda v: v.isoformat() if v else None},
128
+ )
129
+
130
+ is_successful: Optional[bool] = Field(
131
+ default=None,
132
+ description="States if the processing was successful or not.",
133
+ alias="IsSuccessful",
134
+ )
135
+ processing_exception: Optional[Any] = Field(
136
+ default=None, alias="ProcessingException"
137
+ )
138
+ defer_date: Optional[datetime] = Field(
139
+ default=None,
140
+ description="The earliest date and time at which the item is available for processing. If empty the item can be processed as soon as possible.",
141
+ alias="DeferDate",
142
+ )
143
+ due_date: Optional[datetime] = Field(
144
+ default=None,
145
+ description="The latest date and time at which the item should be processed. If empty the item can be processed at any given time.",
146
+ alias="DueDate",
147
+ )
148
+ output: Optional[Dict[str, Any]] = Field(
149
+ default=None,
150
+ description="A collection of key value pairs containing custom data resulted after successful processing.",
151
+ alias="Output",
152
+ )
153
+ analytics: Optional[Dict[str, Any]] = Field(
154
+ default=None,
155
+ description="A collection of key value pairs containing custom data for further analytics processing.",
156
+ alias="Analytics",
157
+ )
158
+ progress: Optional[str] = Field(
159
+ default=None,
160
+ description="String field which is used to keep track of the business flow progress.",
161
+ alias="Progress",
162
+ )
163
+ operation_id: Optional[Annotated[str, Field(strict=True, max_length=128)]] = Field(
164
+ default=None,
165
+ description="The operation id which finished the queue item. Will be saved only if queue item is in final state",
166
+ alias="OperationId",
167
+ )
@@ -0,0 +1,26 @@
1
+ from .actions_service import ActionsService
2
+ from .api_client import ApiClient
3
+ from .assets_service import AssetsService
4
+ from .buckets_service import BucketsService
5
+ from .connections_service import ConnectionsService
6
+ from .context_grounding_service import ContextGroundingService
7
+ from .folder_service import FolderService
8
+ from .jobs_service import JobsService
9
+ from .llm_gateway_service import UiPathLlmChatService, UiPathOpenAIService
10
+ from .processes_service import ProcessesService
11
+ from .queues_service import QueuesService
12
+
13
+ __all__ = [
14
+ "ActionsService",
15
+ "AssetsService",
16
+ "BucketsService",
17
+ "ConnectionsService",
18
+ "ContextGroundingService",
19
+ "ProcessesService",
20
+ "ApiClient",
21
+ "QueuesService",
22
+ "JobsService",
23
+ "UiPathOpenAIService",
24
+ "UiPathLlmChatService",
25
+ "FolderService",
26
+ ]