uipath 2.0.2.dev2__py3-none-any.whl → 2.0.4__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.
- uipath/_cli/_auth/_auth_server.py +35 -6
- uipath/_services/actions_service.py +1 -1
- uipath/_services/assets_service.py +1 -1
- uipath/_services/connections_service.py +1 -1
- uipath/_services/connections_service.pyi +2 -2
- uipath/_services/context_grounding_service.py +3 -3
- uipath/_services/jobs_service.py +1 -1
- uipath/_services/llm_gateway_service.py +2 -2
- uipath/_services/processes_service.py +1 -1
- uipath/_services/queues_service.py +1 -1
- {uipath-2.0.2.dev2.dist-info → uipath-2.0.4.dist-info}/METADATA +2 -1
- {uipath-2.0.2.dev2.dist-info → uipath-2.0.4.dist-info}/RECORD +28 -27
- uipath-2.0.4.dist-info/licenses/LICENSE +9 -0
- /uipath/{_models → models}/__init__.py +0 -0
- /uipath/{_models → models}/action_schema.py +0 -0
- /uipath/{_models → models}/actions.py +0 -0
- /uipath/{_models → models}/assets.py +0 -0
- /uipath/{_models → models}/connections.py +0 -0
- /uipath/{_models → models}/context_grounding.py +0 -0
- /uipath/{_models → models}/context_grounding_index.py +0 -0
- /uipath/{_models → models}/exceptions.py +0 -0
- /uipath/{_models → models}/interrupt_models.py +0 -0
- /uipath/{_models → models}/job.py +0 -0
- /uipath/{_models → models}/llm_gateway.py +0 -0
- /uipath/{_models → models}/processes.py +0 -0
- /uipath/{_models → models}/queues.py +0 -0
- {uipath-2.0.2.dev2.dist-info → uipath-2.0.4.dist-info}/WHEEL +0 -0
- {uipath-2.0.2.dev2.dist-info → uipath-2.0.4.dist-info}/entry_points.txt +0 -0
|
@@ -113,7 +113,13 @@ def make_request_handler_class(state, code_verifier, token_callback, domain):
|
|
|
113
113
|
|
|
114
114
|
class HTTPSServer:
|
|
115
115
|
def __init__(self, port=6234, cert_file="localhost.crt", key_file="localhost.key"):
|
|
116
|
-
"""Initialize HTTPS server with configurable parameters.
|
|
116
|
+
"""Initialize HTTPS server with configurable parameters.
|
|
117
|
+
|
|
118
|
+
Args:
|
|
119
|
+
port (int, optional): Port number to run the server on. Defaults to 6234.
|
|
120
|
+
cert_file (str, optional): SSL certificate file. Defaults to "localhost.crt".
|
|
121
|
+
key_file (str, optional): SSL key file. Defaults to "localhost.key".
|
|
122
|
+
"""
|
|
117
123
|
self.current_path = os.path.dirname(os.path.abspath(__file__))
|
|
118
124
|
self.port = port
|
|
119
125
|
self.cert_file = os.path.join(self.current_path, "localhost.crt")
|
|
@@ -123,17 +129,31 @@ class HTTPSServer:
|
|
|
123
129
|
self.should_shutdown = False
|
|
124
130
|
|
|
125
131
|
def token_received_callback(self, token_data):
|
|
126
|
-
"""Callback for when a token is received.
|
|
132
|
+
"""Callback for when a token is received.
|
|
133
|
+
|
|
134
|
+
Args:
|
|
135
|
+
token_data (dict): The received token data.
|
|
136
|
+
"""
|
|
127
137
|
self.token_data = token_data
|
|
128
138
|
self.should_shutdown = True
|
|
129
139
|
|
|
130
140
|
def create_server(self, state, code_verifier, domain):
|
|
131
|
-
"""Create and configure the HTTPS server.
|
|
141
|
+
"""Create and configure the HTTPS server.
|
|
142
|
+
|
|
143
|
+
Args:
|
|
144
|
+
state (str): The OAuth state parameter.
|
|
145
|
+
code_verifier (str): The PKCE code verifier.
|
|
146
|
+
domain (str): The domain for authentication.
|
|
147
|
+
|
|
148
|
+
Returns:
|
|
149
|
+
socketserver.TCPServer: The configured HTTPS server.
|
|
150
|
+
"""
|
|
132
151
|
# Create SSL context
|
|
133
152
|
context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
|
|
134
153
|
context.load_cert_chain(self.cert_file, self.key_file)
|
|
135
154
|
|
|
136
|
-
# Create server
|
|
155
|
+
# Create server with address reuse
|
|
156
|
+
socketserver.TCPServer.allow_reuse_address = True
|
|
137
157
|
handler = make_request_handler_class(
|
|
138
158
|
state, code_verifier, self.token_received_callback, domain
|
|
139
159
|
)
|
|
@@ -143,7 +163,16 @@ class HTTPSServer:
|
|
|
143
163
|
return self.httpd
|
|
144
164
|
|
|
145
165
|
def start(self, state, code_verifier, domain):
|
|
146
|
-
"""Start the server.
|
|
166
|
+
"""Start the server.
|
|
167
|
+
|
|
168
|
+
Args:
|
|
169
|
+
state (str): The OAuth state parameter.
|
|
170
|
+
code_verifier (str): The PKCE code verifier.
|
|
171
|
+
domain (str): The domain for authentication.
|
|
172
|
+
|
|
173
|
+
Returns:
|
|
174
|
+
dict: The received token data or an empty dict if no token was received.
|
|
175
|
+
"""
|
|
147
176
|
if not self.httpd:
|
|
148
177
|
self.create_server(state, code_verifier, domain)
|
|
149
178
|
|
|
@@ -159,7 +188,7 @@ class HTTPSServer:
|
|
|
159
188
|
return self.token_data if self.token_data else {}
|
|
160
189
|
|
|
161
190
|
def stop(self):
|
|
162
|
-
"""Stop the server gracefully."""
|
|
191
|
+
"""Stop the server gracefully and cleanup resources."""
|
|
163
192
|
if self.httpd:
|
|
164
193
|
self.httpd.server_close()
|
|
165
194
|
self.httpd = None
|
|
@@ -6,9 +6,9 @@ from typing import Any, Dict, Optional, Tuple
|
|
|
6
6
|
from .._config import Config
|
|
7
7
|
from .._execution_context import ExecutionContext
|
|
8
8
|
from .._folder_context import FolderContext
|
|
9
|
-
from .._models import Action, ActionSchema
|
|
10
9
|
from .._utils import Endpoint, RequestSpec
|
|
11
10
|
from .._utils.constants import ENV_TENANT_ID, HEADER_TENANT_ID
|
|
11
|
+
from ..models import Action, ActionSchema
|
|
12
12
|
from ._base_service import BaseService
|
|
13
13
|
|
|
14
14
|
|
|
@@ -5,8 +5,8 @@ from httpx import Response
|
|
|
5
5
|
from .._config import Config
|
|
6
6
|
from .._execution_context import ExecutionContext
|
|
7
7
|
from .._folder_context import FolderContext
|
|
8
|
-
from .._models import UserAsset
|
|
9
8
|
from .._utils import Endpoint, RequestSpec, header_folder, infer_bindings
|
|
9
|
+
from ..models import UserAsset
|
|
10
10
|
from ._base_service import BaseService
|
|
11
11
|
|
|
12
12
|
|
|
@@ -4,9 +4,9 @@ from typing import Any, Dict, Protocol, TypeVar, Union
|
|
|
4
4
|
|
|
5
5
|
from .._config import Config
|
|
6
6
|
from .._execution_context import ExecutionContext
|
|
7
|
-
from .._models import Connection, ConnectionToken
|
|
8
7
|
from .._utils import Endpoint, RequestSpec
|
|
9
8
|
from .._utils.constants import ENTRYPOINT
|
|
9
|
+
from ..models import Connection, ConnectionToken
|
|
10
10
|
from ._base_service import BaseService
|
|
11
11
|
|
|
12
12
|
T_co = TypeVar("T_co", covariant=True)
|
|
@@ -3,11 +3,11 @@ from typing import TYPE_CHECKING, Any, Protocol, TypeVar
|
|
|
3
3
|
|
|
4
4
|
from .._config import Config as Config
|
|
5
5
|
from .._execution_context import ExecutionContext as ExecutionContext
|
|
6
|
-
from .._models import Connection as Connection
|
|
7
|
-
from .._models import ConnectionToken as ConnectionToken
|
|
8
6
|
from .._utils import Endpoint as Endpoint
|
|
9
7
|
from .._utils import RequestSpec as RequestSpec
|
|
10
8
|
from .._utils.constants import ENTRYPOINT as ENTRYPOINT
|
|
9
|
+
from ..models import Connection as Connection
|
|
10
|
+
from ..models import ConnectionToken as ConnectionToken
|
|
11
11
|
from ._base_service import BaseService as BaseService
|
|
12
12
|
|
|
13
13
|
if TYPE_CHECKING:
|
|
@@ -6,14 +6,14 @@ 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 .._models import IngestionInProgressException
|
|
10
|
-
from .._models.context_grounding import ContextGroundingQueryResponse
|
|
11
|
-
from .._models.context_grounding_index import ContextGroundingIndex
|
|
12
9
|
from .._utils import Endpoint, RequestSpec
|
|
13
10
|
from .._utils.constants import (
|
|
14
11
|
HEADER_FOLDER_KEY,
|
|
15
12
|
ORCHESTRATOR_STORAGE_BUCKET_DATA_SOURCE,
|
|
16
13
|
)
|
|
14
|
+
from ..models import IngestionInProgressException
|
|
15
|
+
from ..models.context_grounding import ContextGroundingQueryResponse
|
|
16
|
+
from ..models.context_grounding_index import ContextGroundingIndex
|
|
17
17
|
from ._base_service import BaseService
|
|
18
18
|
from .folder_service import FolderService
|
|
19
19
|
|
uipath/_services/jobs_service.py
CHANGED
|
@@ -4,8 +4,8 @@ from typing import Any, Dict, Optional, overload
|
|
|
4
4
|
from .._config import Config
|
|
5
5
|
from .._execution_context import ExecutionContext
|
|
6
6
|
from .._folder_context import FolderContext
|
|
7
|
-
from .._models.job import Job
|
|
8
7
|
from .._utils import Endpoint, RequestSpec, header_folder
|
|
8
|
+
from ..models.job import Job
|
|
9
9
|
from ._base_service import BaseService
|
|
10
10
|
|
|
11
11
|
|
|
@@ -3,7 +3,8 @@ from typing import Any, Dict, List, Optional
|
|
|
3
3
|
|
|
4
4
|
from .._config import Config
|
|
5
5
|
from .._execution_context import ExecutionContext
|
|
6
|
-
from ..
|
|
6
|
+
from .._utils import Endpoint
|
|
7
|
+
from ..models.llm_gateway import (
|
|
7
8
|
ChatCompletion,
|
|
8
9
|
SpecificToolChoice,
|
|
9
10
|
TextEmbedding,
|
|
@@ -11,7 +12,6 @@ from .._models.llm_gateway import (
|
|
|
11
12
|
ToolDefinition,
|
|
12
13
|
UsageInfo,
|
|
13
14
|
)
|
|
14
|
-
from .._utils import Endpoint
|
|
15
15
|
from ._base_service import BaseService
|
|
16
16
|
|
|
17
17
|
# Common constants
|
|
@@ -5,9 +5,9 @@ from typing import Any, Dict, Optional
|
|
|
5
5
|
from .._config import Config
|
|
6
6
|
from .._execution_context import ExecutionContext
|
|
7
7
|
from .._folder_context import FolderContext
|
|
8
|
-
from .._models.job import Job
|
|
9
8
|
from .._utils import Endpoint, RequestSpec, header_folder, infer_bindings
|
|
10
9
|
from .._utils.constants import ENV_JOB_ID, HEADER_JOB_KEY
|
|
10
|
+
from ..models.job import Job
|
|
11
11
|
from ._base_service import BaseService
|
|
12
12
|
|
|
13
13
|
|
|
@@ -5,8 +5,8 @@ from httpx import Response
|
|
|
5
5
|
from .._config import Config
|
|
6
6
|
from .._execution_context import ExecutionContext
|
|
7
7
|
from .._folder_context import FolderContext
|
|
8
|
-
from .._models import CommitType, QueueItem, TransactionItem, TransactionItemResult
|
|
9
8
|
from .._utils import Endpoint, RequestSpec
|
|
9
|
+
from ..models import CommitType, QueueItem, TransactionItem, TransactionItemResult
|
|
10
10
|
from ._base_service import BaseService
|
|
11
11
|
|
|
12
12
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
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
|
|
7
7
|
Maintainer-email: Marius Cosareanu <marius.cosareanu@uipath.com>, Cristian Pufu <cristian.pufu@uipath.com>
|
|
8
|
+
License-File: LICENSE
|
|
8
9
|
Classifier: Development Status :: 3 - Alpha
|
|
9
10
|
Classifier: Intended Audience :: Developers
|
|
10
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -14,7 +14,7 @@ uipath/_cli/cli_pack.py,sha256=gV7SKa3H4ftP1fx3cNLlUQs05ogtqBTIkBcgvvsoyj4,11582
|
|
|
14
14
|
uipath/_cli/cli_publish.py,sha256=_b9rehjsbxwkpH5_DtgFUaWWJqcZTg5nate-M5BnE_c,3586
|
|
15
15
|
uipath/_cli/cli_run.py,sha256=dV0a-sx78T0HJHArfZP2M9YhT8d8aOuf-9OdkBqj3fE,4577
|
|
16
16
|
uipath/_cli/middlewares.py,sha256=IiJgjsqrJVKSXx4RcIKHWoH-SqWqpHPbhzkQEybmAos,3937
|
|
17
|
-
uipath/_cli/_auth/_auth_server.py,sha256=
|
|
17
|
+
uipath/_cli/_auth/_auth_server.py,sha256=i1u4q_qv_pxrOjKmM3nJPXAzX3WtQzgGUQL9PM-YBYI,7148
|
|
18
18
|
uipath/_cli/_auth/_models.py,sha256=sYMCfvmprIqnZxStlD_Dxx2bcxgn0Ri4D7uwemwkcNg,948
|
|
19
19
|
uipath/_cli/_auth/_oidc_utils.py,sha256=WaX9jDlXrlX6yD8i8gsocV8ngjaT72Xd1tvsZMmSbco,2127
|
|
20
20
|
uipath/_cli/_auth/_portal_service.py,sha256=G5wiBlinLTar28b4p-d5alje28hSVqfBUDU7fNezpg4,5984
|
|
@@ -34,33 +34,20 @@ uipath/_cli/_templates/package.nuspec.template,sha256=YZyLc-u_EsmIoKf42JsLQ55OGe
|
|
|
34
34
|
uipath/_cli/_utils/_common.py,sha256=CH25AKRosp6t28iAl9SCK2wgBTRr-Bekq5Fu-Mc3Ui0,547
|
|
35
35
|
uipath/_cli/_utils/_input_args.py,sha256=pyQhEcQXHdFHYTVNzvfWp439aii5StojoptnmCv5lfs,4094
|
|
36
36
|
uipath/_cli/_utils/_parse_ast.py,sha256=3XVjnhJNnSfjXlitct91VOtqSl0l-sqDpoWww28mMc0,20663
|
|
37
|
-
uipath/_models/__init__.py,sha256=Pg8x6wUeyUQGTKgu5u0alPxhxUXlTWFUc1RTPK820lg,914
|
|
38
|
-
uipath/_models/action_schema.py,sha256=lKDhP7Eix23fFvfQrqqNmSOiPyyNF6tiRpUu0VZIn_M,714
|
|
39
|
-
uipath/_models/actions.py,sha256=ekSH4YUQR4KPOH-heBm9yOgOfirndx0In4_S4VYWeEU,2993
|
|
40
|
-
uipath/_models/assets.py,sha256=8ZPImmJ-1u5KqdR1UBgZnGjSBW-Nr81Ruq_5Uav417A,1841
|
|
41
|
-
uipath/_models/connections.py,sha256=perIqW99YEg_0yWZPdpZlmNpZcwY_toR1wkqDUBdAN0,2014
|
|
42
|
-
uipath/_models/context_grounding.py,sha256=ak3cjlA90X1FceAAI0ry4jioTtK6Zxo0oqmKY_xs8bo,352
|
|
43
|
-
uipath/_models/context_grounding_index.py,sha256=vHBu069j1Y1m5PydLj6uoVH0rNIxuOohKLknHn5KvQw,2508
|
|
44
|
-
uipath/_models/exceptions.py,sha256=WEUw2_sh-aE0HDiqPoBZyh9KIk1BaDFY5O7Lzo8KRws,324
|
|
45
|
-
uipath/_models/interrupt_models.py,sha256=KcUD7YeUCMHOiunbnLbHZdSjivdO5yQ8hachQ_IR1Wg,525
|
|
46
|
-
uipath/_models/job.py,sha256=f9L6_kg_VP0dAYvdcz1DWEWzy4NZPdlpHREod0uNK1E,3099
|
|
47
|
-
uipath/_models/llm_gateway.py,sha256=0sl5Wtve94V14H3AHwmJSoXAhoc-Fai3wJxP8HrnBPg,1994
|
|
48
|
-
uipath/_models/processes.py,sha256=Atvfrt6X4TYST3iA62jpS_Uxc3hg6uah11p-RaKZ6dk,2029
|
|
49
|
-
uipath/_models/queues.py,sha256=N_s0GKucbyjh0RnO8SxPk6wlRgvq8KIIYsfaoIY46tM,6446
|
|
50
37
|
uipath/_services/__init__.py,sha256=VPbwLDsvN26nWZgvR-8_-tc3i0rk5doqjTJbSrK0nN4,818
|
|
51
38
|
uipath/_services/_base_service.py,sha256=3YClCoZBkVQGNJZGy-4NTk-HGsGA61XtwVQFYv9mwWk,7955
|
|
52
|
-
uipath/_services/actions_service.py,sha256=
|
|
39
|
+
uipath/_services/actions_service.py,sha256=9f_NmBzIpBClMz7wsvQJ8MbVvdZ4V1zy-cqLnPzdPRk,9114
|
|
53
40
|
uipath/_services/api_client.py,sha256=1hYLc_90dQzCGnqqirEHpPqvL3Gkv2sSKoeOV_iTmlk,2903
|
|
54
|
-
uipath/_services/assets_service.py,sha256=
|
|
41
|
+
uipath/_services/assets_service.py,sha256=OdnhlHfEmwA0SQqkXO4XHl3bV26QLgIxj6sFycseZ0g,8647
|
|
55
42
|
uipath/_services/buckets_service.py,sha256=JeSFoEOBeGi-i_aevaMAyu5gpauq1KC_JkANRTmyxEs,8655
|
|
56
|
-
uipath/_services/connections_service.py,sha256=
|
|
57
|
-
uipath/_services/connections_service.pyi,sha256=
|
|
58
|
-
uipath/_services/context_grounding_service.py,sha256=
|
|
43
|
+
uipath/_services/connections_service.py,sha256=J_eKhMuBmiDKIhr5bA4_9g8xND185lh_MuBh2hmWMs4,6853
|
|
44
|
+
uipath/_services/connections_service.pyi,sha256=6OOnh0aCfxhETL8n_JZ6Xoe2BE3ST_7Vz-FgLZc53lM,2465
|
|
45
|
+
uipath/_services/context_grounding_service.py,sha256=YMKRrit4TsU4--pVR7O6eiLxhSwuxPuaVvU0prlYzg0,13268
|
|
59
46
|
uipath/_services/folder_service.py,sha256=1BRTnfA-iMzAGZTJqTUtOXzNZLzbGCoWpH3g45YBEuQ,1556
|
|
60
|
-
uipath/_services/jobs_service.py,sha256=
|
|
61
|
-
uipath/_services/llm_gateway_service.py,sha256=
|
|
62
|
-
uipath/_services/processes_service.py,sha256=
|
|
63
|
-
uipath/_services/queues_service.py,sha256=
|
|
47
|
+
uipath/_services/jobs_service.py,sha256=iNs4hvr8Qyy_zbJjEkPK-0ygCM1l0OqpD1D_0PRgmf4,8126
|
|
48
|
+
uipath/_services/llm_gateway_service.py,sha256=1YCgW2c0Hh3uXctUKPLcytAMJe4Qk_L8LLCd8Plgvvs,11695
|
|
49
|
+
uipath/_services/processes_service.py,sha256=3A7EQrwY2fzKrnLk-MBowKnba4rmUAXIhtw1LlnU1yw,5510
|
|
50
|
+
uipath/_services/queues_service.py,sha256=R9QMTIGeOa76uZJznbNXZ0PPAztah8JnSMjKsZkdNwU,12225
|
|
64
51
|
uipath/_utils/__init__.py,sha256=y8asYKjU5j3v72TbgShEpUafAAJXJ6bngqdzXIl-Lhk,481
|
|
65
52
|
uipath/_utils/_endpoint.py,sha256=yYHwqbQuJIevpaTkdfYJS9CrtlFeEyfb5JQK5osTCog,2489
|
|
66
53
|
uipath/_utils/_infer_bindings.py,sha256=ysAftopcCBj4ojYyeVwbSl20qYhCDmqyldCinj6sICM,905
|
|
@@ -69,7 +56,21 @@ uipath/_utils/_request_override.py,sha256=_vibG78vEDWS3JKg2cJ5l6tpoBMLChUOauiqL1
|
|
|
69
56
|
uipath/_utils/_request_spec.py,sha256=iCtBLqtbWUpFG5g1wtIZBzSupKsfaRLiQFoFc_4B70Q,747
|
|
70
57
|
uipath/_utils/_user_agent.py,sha256=AcyXwxzdg1Woi-TuFdHzDExC34AgwW4_i9W8JVj-VZI,470
|
|
71
58
|
uipath/_utils/constants.py,sha256=xW-gbRasjdOwSj2rke4wfRCml69710oUaDNJcwFAZug,775
|
|
72
|
-
uipath
|
|
73
|
-
uipath
|
|
74
|
-
uipath
|
|
75
|
-
uipath
|
|
59
|
+
uipath/models/__init__.py,sha256=Pg8x6wUeyUQGTKgu5u0alPxhxUXlTWFUc1RTPK820lg,914
|
|
60
|
+
uipath/models/action_schema.py,sha256=lKDhP7Eix23fFvfQrqqNmSOiPyyNF6tiRpUu0VZIn_M,714
|
|
61
|
+
uipath/models/actions.py,sha256=ekSH4YUQR4KPOH-heBm9yOgOfirndx0In4_S4VYWeEU,2993
|
|
62
|
+
uipath/models/assets.py,sha256=8ZPImmJ-1u5KqdR1UBgZnGjSBW-Nr81Ruq_5Uav417A,1841
|
|
63
|
+
uipath/models/connections.py,sha256=perIqW99YEg_0yWZPdpZlmNpZcwY_toR1wkqDUBdAN0,2014
|
|
64
|
+
uipath/models/context_grounding.py,sha256=ak3cjlA90X1FceAAI0ry4jioTtK6Zxo0oqmKY_xs8bo,352
|
|
65
|
+
uipath/models/context_grounding_index.py,sha256=vHBu069j1Y1m5PydLj6uoVH0rNIxuOohKLknHn5KvQw,2508
|
|
66
|
+
uipath/models/exceptions.py,sha256=WEUw2_sh-aE0HDiqPoBZyh9KIk1BaDFY5O7Lzo8KRws,324
|
|
67
|
+
uipath/models/interrupt_models.py,sha256=KcUD7YeUCMHOiunbnLbHZdSjivdO5yQ8hachQ_IR1Wg,525
|
|
68
|
+
uipath/models/job.py,sha256=f9L6_kg_VP0dAYvdcz1DWEWzy4NZPdlpHREod0uNK1E,3099
|
|
69
|
+
uipath/models/llm_gateway.py,sha256=0sl5Wtve94V14H3AHwmJSoXAhoc-Fai3wJxP8HrnBPg,1994
|
|
70
|
+
uipath/models/processes.py,sha256=Atvfrt6X4TYST3iA62jpS_Uxc3hg6uah11p-RaKZ6dk,2029
|
|
71
|
+
uipath/models/queues.py,sha256=N_s0GKucbyjh0RnO8SxPk6wlRgvq8KIIYsfaoIY46tM,6446
|
|
72
|
+
uipath-2.0.4.dist-info/METADATA,sha256=NJM9Zn2XlQveBQCyQqqJQLn22KsFpaj0LQxzwXV9ZCQ,5796
|
|
73
|
+
uipath-2.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
74
|
+
uipath-2.0.4.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
75
|
+
uipath-2.0.4.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
76
|
+
uipath-2.0.4.dist-info/RECORD,,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright 2025 UiPath
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|