uipath 2.1.41__py3-none-any.whl → 2.1.43__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.
- uipath/_cli/_auth/_auth_server.py +2 -2
- uipath/_cli/_auth/_auth_service.py +151 -0
- uipath/_cli/_auth/_client_credentials.py +21 -22
- uipath/_cli/_auth/_oidc_utils.py +49 -44
- uipath/_cli/_auth/_portal_service.py +23 -22
- uipath/_cli/_auth/_url_utils.py +15 -5
- uipath/_cli/_dev/_terminal/__init__.py +9 -0
- uipath/_cli/_dev/_terminal/_components/_details.py +5 -1
- uipath/_cli/_evals/_models/_agent_execution_output.py +14 -0
- uipath/_cli/_evals/_runtime.py +172 -0
- uipath/_cli/_runtime/_contracts.py +135 -6
- uipath/_cli/_utils/_eval_set.py +84 -0
- uipath/_cli/cli_auth.py +18 -151
- uipath/_cli/cli_eval.py +73 -42
- uipath/_cli/cli_run.py +10 -36
- uipath/_cli/middlewares.py +1 -0
- uipath/_utils/constants.py +3 -0
- uipath/eval/_helpers/__init__.py +3 -0
- uipath/eval/_helpers/helpers.py +47 -0
- {uipath-2.1.41.dist-info → uipath-2.1.43.dist-info}/METADATA +1 -1
- {uipath-2.1.41.dist-info → uipath-2.1.43.dist-info}/RECORD +24 -19
- uipath/_cli/_evals/evaluation_service.py +0 -582
- {uipath-2.1.41.dist-info → uipath-2.1.43.dist-info}/WHEEL +0 -0
- {uipath-2.1.41.dist-info → uipath-2.1.43.dist-info}/entry_points.txt +0 -0
- {uipath-2.1.41.dist-info → uipath-2.1.43.dist-info}/licenses/LICENSE +0 -0
uipath/_cli/cli_eval.py
CHANGED
@@ -2,13 +2,22 @@
|
|
2
2
|
import ast
|
3
3
|
import asyncio
|
4
4
|
import os
|
5
|
-
from
|
5
|
+
from datetime import datetime, timezone
|
6
|
+
from typing import List, Optional
|
6
7
|
|
7
8
|
import click
|
8
9
|
|
10
|
+
from uipath._cli._evals._runtime import UiPathEvalContext, UiPathEvalRuntime
|
11
|
+
from uipath._cli._runtime._contracts import (
|
12
|
+
UiPathRuntimeContext,
|
13
|
+
UiPathRuntimeContextBuilder,
|
14
|
+
UiPathRuntimeFactory,
|
15
|
+
)
|
16
|
+
from uipath._cli._runtime._runtime import UiPathRuntime
|
17
|
+
from uipath._cli.middlewares import MiddlewareResult, Middlewares
|
18
|
+
|
9
19
|
from .._utils.constants import ENV_JOB_ID
|
10
20
|
from ..telemetry import track
|
11
|
-
from ._evals.evaluation_service import EvaluationService
|
12
21
|
from ._utils._console import ConsoleLogger
|
13
22
|
|
14
23
|
console = ConsoleLogger()
|
@@ -22,48 +31,60 @@ class LiteralOption(click.Option):
|
|
22
31
|
raise click.BadParameter(value) from e
|
23
32
|
|
24
33
|
|
25
|
-
def
|
34
|
+
def eval_agent_middleware(
|
26
35
|
entrypoint: Optional[str] = None,
|
27
36
|
eval_set: Optional[str] = None,
|
28
37
|
eval_ids: Optional[List[str]] = None,
|
29
38
|
workers: int = 8,
|
30
39
|
no_report: bool = False,
|
31
40
|
**kwargs,
|
32
|
-
) ->
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
41
|
+
) -> MiddlewareResult:
|
42
|
+
def generate_eval_context(
|
43
|
+
runtime_context: UiPathRuntimeContext,
|
44
|
+
) -> UiPathEvalContext:
|
45
|
+
os.makedirs("evals/results", exist_ok=True)
|
46
|
+
timestamp = datetime.now(timezone.utc).strftime("%M-%H-%d-%m-%Y")
|
47
|
+
base_context = UiPathRuntimeContextBuilder().with_defaults().build()
|
48
|
+
# TODO: the name should include the eval_set name. those files should not be commited to SW
|
49
|
+
base_context.execution_output_file = (
|
50
|
+
f"evals/results/{timestamp}.json"
|
51
|
+
if not os.getenv("UIPATH_JOB_KEY")
|
52
|
+
else None
|
53
|
+
)
|
54
|
+
return UiPathEvalContext(
|
55
|
+
runtime_context=runtime_context,
|
56
|
+
no_report=no_report,
|
57
|
+
workers=workers,
|
58
|
+
eval_set=eval_set,
|
59
|
+
eval_ids=eval_ids,
|
60
|
+
**kwargs,
|
61
|
+
**base_context.model_dump(),
|
62
|
+
)
|
42
63
|
|
43
|
-
Returns:
|
44
|
-
Tuple containing:
|
45
|
-
- success: True if evaluation was successful
|
46
|
-
- error_message: Error message if any
|
47
|
-
- info_message: Info message if any
|
48
|
-
"""
|
49
64
|
try:
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
service = EvaluationService(
|
59
|
-
entrypoint, eval_set, eval_ids, workers, report_progress=not no_report
|
65
|
+
runtime_factory = UiPathRuntimeFactory(UiPathRuntime, UiPathRuntimeContext)
|
66
|
+
context = (
|
67
|
+
UiPathRuntimeContextBuilder()
|
68
|
+
.with_defaults(**kwargs)
|
69
|
+
.with_entrypoint(entrypoint)
|
70
|
+
.with_entrypoint(entrypoint)
|
71
|
+
.mark_eval_run()
|
72
|
+
.build()
|
60
73
|
)
|
61
|
-
asyncio.run(service.run_evaluation())
|
62
74
|
|
63
|
-
|
75
|
+
async def execute():
|
76
|
+
async with UiPathEvalRuntime.from__eval_context(
|
77
|
+
factory=runtime_factory, context=generate_eval_context(context)
|
78
|
+
) as eval_runtime:
|
79
|
+
await eval_runtime.execute()
|
80
|
+
|
81
|
+
asyncio.run(execute())
|
82
|
+
return MiddlewareResult(should_continue=False)
|
64
83
|
|
65
84
|
except Exception as e:
|
66
|
-
return
|
85
|
+
return MiddlewareResult(
|
86
|
+
should_continue=False, error_message=f"Error running evaluation: {str(e)}"
|
87
|
+
)
|
67
88
|
|
68
89
|
|
69
90
|
@click.command()
|
@@ -99,19 +120,29 @@ def eval(
|
|
99
120
|
workers: Number of parallel workers for running evaluations
|
100
121
|
no_report: Do not report the evaluation results
|
101
122
|
"""
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
123
|
+
result = Middlewares.next(
|
124
|
+
"eval",
|
125
|
+
entrypoint,
|
126
|
+
eval_set,
|
127
|
+
eval_ids,
|
107
128
|
no_report=no_report,
|
129
|
+
workers=workers,
|
108
130
|
)
|
109
|
-
if error_message:
|
110
|
-
console.error(error_message)
|
111
|
-
click.get_current_context().exit(1)
|
112
131
|
|
113
|
-
if
|
114
|
-
|
132
|
+
if result.should_continue:
|
133
|
+
result = eval_agent_middleware(
|
134
|
+
entrypoint=entrypoint,
|
135
|
+
eval_set=eval_set,
|
136
|
+
eval_ids=eval_ids,
|
137
|
+
workers=workers,
|
138
|
+
no_report=no_report,
|
139
|
+
)
|
140
|
+
if result.should_continue:
|
141
|
+
console.error("Could not process the request with any available handler.")
|
142
|
+
if result.error_message:
|
143
|
+
console.error(result.error_message)
|
144
|
+
|
145
|
+
console.success("Evaluation completed successfully")
|
115
146
|
|
116
147
|
|
117
148
|
if __name__ == "__main__":
|
uipath/_cli/cli_run.py
CHANGED
@@ -4,12 +4,10 @@ import os
|
|
4
4
|
import traceback
|
5
5
|
from os import environ as env
|
6
6
|
from typing import Optional, Tuple
|
7
|
-
from uuid import uuid4
|
8
7
|
|
9
8
|
import click
|
10
9
|
|
11
10
|
from uipath._cli._utils._debug import setup_debugging
|
12
|
-
from uipath.tracing import LlmOpsHttpExporter
|
13
11
|
|
14
12
|
from .._utils.constants import (
|
15
13
|
ENV_JOB_ID,
|
@@ -17,9 +15,9 @@ from .._utils.constants import (
|
|
17
15
|
from ..telemetry import track
|
18
16
|
from ._runtime._contracts import (
|
19
17
|
UiPathRuntimeContext,
|
18
|
+
UiPathRuntimeContextBuilder,
|
20
19
|
UiPathRuntimeError,
|
21
20
|
UiPathRuntimeFactory,
|
22
|
-
UiPathTraceContext,
|
23
21
|
)
|
24
22
|
from ._runtime._runtime import UiPathRuntime
|
25
23
|
from ._utils._console import ConsoleLogger
|
@@ -61,41 +59,17 @@ Usage: `uipath run <entrypoint_path> <input_arguments> [-f <input_json_file_path
|
|
61
59
|
)
|
62
60
|
|
63
61
|
try:
|
64
|
-
context = UiPathRuntimeContext.from_config(
|
65
|
-
env.get("UIPATH_CONFIG_PATH", "uipath.json"), **kwargs
|
66
|
-
)
|
67
|
-
context.entrypoint = entrypoint
|
68
|
-
context.input = input
|
69
|
-
context.resume = resume
|
70
|
-
context.job_id = env.get("UIPATH_JOB_KEY")
|
71
|
-
context.trace_id = env.get("UIPATH_TRACE_ID")
|
72
|
-
context.input_file = kwargs.get("input_file", None)
|
73
|
-
context.execution_output_file = kwargs.get("execution_output_file", None)
|
74
|
-
context.is_eval_run = kwargs.get("is_eval_run", False)
|
75
|
-
context.logs_min_level = env.get("LOG_LEVEL", "INFO")
|
76
|
-
context.tracing_enabled = env.get("UIPATH_TRACING_ENABLED", True)
|
77
|
-
context.trace_context = UiPathTraceContext(
|
78
|
-
trace_id=env.get("UIPATH_TRACE_ID"),
|
79
|
-
parent_span_id=env.get("UIPATH_PARENT_SPAN_ID"),
|
80
|
-
root_span_id=env.get("UIPATH_ROOT_SPAN_ID"),
|
81
|
-
enabled=env.get("UIPATH_TRACING_ENABLED", True),
|
82
|
-
job_id=env.get("UIPATH_JOB_KEY"),
|
83
|
-
org_id=env.get("UIPATH_ORGANIZATION_ID"),
|
84
|
-
tenant_id=env.get("UIPATH_TENANT_ID"),
|
85
|
-
process_key=env.get("UIPATH_PROCESS_UUID"),
|
86
|
-
folder_key=env.get("UIPATH_FOLDER_KEY"),
|
87
|
-
reference_id=env.get("UIPATH_JOB_KEY") or str(uuid4()),
|
88
|
-
)
|
89
|
-
|
90
62
|
runtime_factory = UiPathRuntimeFactory(UiPathRuntime, UiPathRuntimeContext)
|
63
|
+
context = (
|
64
|
+
UiPathRuntimeContextBuilder()
|
65
|
+
.with_defaults(**kwargs)
|
66
|
+
.with_entrypoint(entrypoint)
|
67
|
+
.with_input(input)
|
68
|
+
.with_resume(resume)
|
69
|
+
.build()
|
70
|
+
)
|
91
71
|
|
92
|
-
|
93
|
-
runtime_factory.add_span_exporter(LlmOpsHttpExporter())
|
94
|
-
|
95
|
-
async def execute():
|
96
|
-
await runtime_factory.execute(context)
|
97
|
-
|
98
|
-
asyncio.run(execute())
|
72
|
+
asyncio.run(runtime_factory.execute(context))
|
99
73
|
|
100
74
|
return MiddlewareResult(should_continue=False)
|
101
75
|
|
uipath/_cli/middlewares.py
CHANGED
uipath/_utils/constants.py
CHANGED
@@ -0,0 +1,47 @@
|
|
1
|
+
import json
|
2
|
+
import os
|
3
|
+
|
4
|
+
import click
|
5
|
+
|
6
|
+
from uipath._cli._utils._console import ConsoleLogger
|
7
|
+
from uipath._utils.constants import UIPATH_CONFIG_FILE
|
8
|
+
|
9
|
+
|
10
|
+
def auto_discover_entrypoint() -> str:
|
11
|
+
"""Auto-discover entrypoint from config file.
|
12
|
+
|
13
|
+
Returns:
|
14
|
+
Path to the entrypoint
|
15
|
+
|
16
|
+
Raises:
|
17
|
+
ValueError: If no entrypoint found or multiple entrypoints exist
|
18
|
+
"""
|
19
|
+
console = ConsoleLogger()
|
20
|
+
|
21
|
+
if not os.path.isfile(UIPATH_CONFIG_FILE):
|
22
|
+
raise ValueError(
|
23
|
+
f"File '{UIPATH_CONFIG_FILE}' not found. Please run 'uipath init'."
|
24
|
+
)
|
25
|
+
|
26
|
+
with open(UIPATH_CONFIG_FILE, "r", encoding="utf-8") as f:
|
27
|
+
uipath_config = json.loads(f.read())
|
28
|
+
|
29
|
+
entrypoints = uipath_config.get("entryPoints", [])
|
30
|
+
|
31
|
+
if not entrypoints:
|
32
|
+
raise ValueError(
|
33
|
+
f"No entrypoints found in {UIPATH_CONFIG_FILE}. Please run 'uipath init'."
|
34
|
+
)
|
35
|
+
|
36
|
+
if len(entrypoints) > 1:
|
37
|
+
entrypoint_paths = [ep.get("filePath") for ep in entrypoints]
|
38
|
+
raise ValueError(
|
39
|
+
f"Multiple entrypoints found: {entrypoint_paths}. "
|
40
|
+
f"Please specify which entrypoint to use."
|
41
|
+
)
|
42
|
+
|
43
|
+
entrypoint = entrypoints[0].get("filePath")
|
44
|
+
console.info(
|
45
|
+
f"Auto-discovered agent entrypoint: {click.style(entrypoint, fg='cyan')}"
|
46
|
+
)
|
47
|
+
return entrypoint
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: uipath
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.43
|
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
|
@@ -6,10 +6,10 @@ uipath/_uipath.py,sha256=lDsF2rBurqxm24DlRan25z9SU9t9b2RkAGvoI645QSw,4314
|
|
6
6
|
uipath/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
uipath/_cli/README.md,sha256=GLtCfbeIKZKNnGTCsfSVqRQ27V1btT1i2bSAyW_xZl4,474
|
8
8
|
uipath/_cli/__init__.py,sha256=kf4GINkunFGMZkTk2Z4f1Q3-OsxpNnV6u_9BsBt1i0E,2229
|
9
|
-
uipath/_cli/cli_auth.py,sha256=
|
9
|
+
uipath/_cli/cli_auth.py,sha256=i3ykLlCg68xgPXHHaa0agHwGFIiLiTLzOiF6Su8XaEo,2436
|
10
10
|
uipath/_cli/cli_deploy.py,sha256=KPCmQ0c_NYD5JofSDao5r6QYxHshVCRxlWDVnQvlp5w,645
|
11
11
|
uipath/_cli/cli_dev.py,sha256=JRzXrAUM_sj6FCVG-VveYADTwR8yQ330SgYs3LgbvJc,2104
|
12
|
-
uipath/_cli/cli_eval.py,sha256=
|
12
|
+
uipath/_cli/cli_eval.py,sha256=7LppLveRyloOXWJy-6xx32CHe_xnQ2kTvkuRirgAmYI,4526
|
13
13
|
uipath/_cli/cli_init.py,sha256=ls577uNm2zWccknIhtVFS3ah2ds0QSy2_TgMp6z7Wt4,6049
|
14
14
|
uipath/_cli/cli_invoke.py,sha256=4jyhqcy7tPrpxvaUhW-9gut6ddsCGMdJJcpOXXmIe8g,4348
|
15
15
|
uipath/_cli/cli_new.py,sha256=9378NYUBc9j-qKVXV7oja-jahfJhXBg8zKVyaon7ctY,2102
|
@@ -17,23 +17,24 @@ uipath/_cli/cli_pack.py,sha256=NmwZTfwZ2fURiHyiX1BM0juAtBOjPB1Jmcpu-rD7p-4,11025
|
|
17
17
|
uipath/_cli/cli_publish.py,sha256=FmBCdeh4zFaESOLfzTTPxGcOwUtsQ_WkvF_fjHEdU8s,6448
|
18
18
|
uipath/_cli/cli_pull.py,sha256=vwS0KMX6O2L6RaPy8tw_qzXe4dC7kf_G6nbLm0I62eI,6831
|
19
19
|
uipath/_cli/cli_push.py,sha256=-j-gDIbT8GyU2SybLQqFl5L8KI9nu3CDijVtltDgX20,3132
|
20
|
-
uipath/_cli/cli_run.py,sha256=
|
21
|
-
uipath/_cli/middlewares.py,sha256=
|
20
|
+
uipath/_cli/cli_run.py,sha256=njT0AIHUE8Uk_j5YbtvM71Z4WwB3659a9-GYn22wCdY,6502
|
21
|
+
uipath/_cli/middlewares.py,sha256=GvMhDnx1BmA7rIe12s6Uqv1JdqNZhvraU0a91oqGag4,4976
|
22
22
|
uipath/_cli/spinner.py,sha256=bS-U_HA5yne11ejUERu7CQoXmWdabUD2bm62EfEdV8M,1107
|
23
|
-
uipath/_cli/_auth/_auth_server.py,sha256=
|
24
|
-
uipath/_cli/_auth/
|
23
|
+
uipath/_cli/_auth/_auth_server.py,sha256=22km0F1NFNXgyLbvtAx3ssiQlVGHroLdtDCWEqiCiMg,7106
|
24
|
+
uipath/_cli/_auth/_auth_service.py,sha256=tX8YuHlgUn2qUDQ_hrbabs7kMTD3K1u3EgqGYj92KRM,6106
|
25
|
+
uipath/_cli/_auth/_client_credentials.py,sha256=VIyzgnGHSZxJXG8kSFIcCH0n2K2zep2SYcb5q1nBFcs,5408
|
25
26
|
uipath/_cli/_auth/_models.py,sha256=sYMCfvmprIqnZxStlD_Dxx2bcxgn0Ri4D7uwemwkcNg,948
|
26
|
-
uipath/_cli/_auth/_oidc_utils.py,sha256=
|
27
|
-
uipath/_cli/_auth/_portal_service.py,sha256
|
28
|
-
uipath/_cli/_auth/_url_utils.py,sha256=
|
27
|
+
uipath/_cli/_auth/_oidc_utils.py,sha256=j9VCXai_dM9PF1WtoWEsXETvrWUjuTgU-dCJ3oRudyg,2394
|
28
|
+
uipath/_cli/_auth/_portal_service.py,sha256=MwsqEs505kMCiPCfjcelgflzvg1V3MqRNNVaOismaDc,8272
|
29
|
+
uipath/_cli/_auth/_url_utils.py,sha256=Vr-eYbwW_ltmwkULNEAbn6LNsMHnT4uT1n_1zlqD4Ss,1503
|
29
30
|
uipath/_cli/_auth/_utils.py,sha256=9nb76xe5XmDZ0TAncp-_1SKqL6FdwRi9eS3C2noN1lY,1591
|
30
31
|
uipath/_cli/_auth/auth_config.json,sha256=UnAhdum8phjuZaZKE5KLp0IcPCbIltDEU1M_G8gVbos,443
|
31
32
|
uipath/_cli/_auth/index.html,sha256=uGK0CDTP8Rys_p4O_Pbd2x4tz0frKNVcumjrXnal5Nc,22814
|
32
33
|
uipath/_cli/_auth/localhost.crt,sha256=oGl9oLLOiouHubAt39B4zEfylFvKEtbtr_43SIliXJc,1226
|
33
34
|
uipath/_cli/_auth/localhost.key,sha256=X31VYXD8scZtmGA837dGX5l6G-LXHLo5ItWJhZXaz3c,1679
|
34
|
-
uipath/_cli/_dev/_terminal/__init__.py,sha256=
|
35
|
+
uipath/_cli/_dev/_terminal/__init__.py,sha256=35nz6kTZyWSM9pP-FsXq8VXo6r1iM8rRUtqOqYahFLc,13271
|
35
36
|
uipath/_cli/_dev/_terminal/_components/_chat.py,sha256=NLRoy49QScHiI-q0FGykkaU8ajv1d23fx7issSALcFA,4119
|
36
|
-
uipath/_cli/_dev/_terminal/_components/_details.py,sha256=
|
37
|
+
uipath/_cli/_dev/_terminal/_components/_details.py,sha256=FbLYtJ56gqHV6CIrpzO_n9Sk_YNg4nzRKTSsbj-DBPQ,17257
|
37
38
|
uipath/_cli/_dev/_terminal/_components/_history.py,sha256=dcT9tohEwpUaLGi7VWu5d-mDIF45UxFzN2Yvdf5N-eM,2691
|
38
39
|
uipath/_cli/_dev/_terminal/_components/_json_input.py,sha256=MPkaeiA5KfkwJZKuNJ02hQksVtluZlmJv9nLRRAWYQI,592
|
39
40
|
uipath/_cli/_dev/_terminal/_components/_new.py,sha256=paA8oRhP5mphpf3RHV0gx7_CYdN5e6158tv_XVQifdE,5219
|
@@ -43,7 +44,7 @@ uipath/_cli/_dev/_terminal/_styles/terminal.tcss,sha256=ktVpKwXIXw2VZp8KIZD6fO9i
|
|
43
44
|
uipath/_cli/_dev/_terminal/_utils/_chat.py,sha256=YUZxYVdmEManwHDuZsczJT1dWIYE1dVBgABlurwMFcE,8493
|
44
45
|
uipath/_cli/_dev/_terminal/_utils/_exporter.py,sha256=oI6D_eMwrh_2aqDYUh4GrJg8VLGrLYhDahR-_o0uJns,4144
|
45
46
|
uipath/_cli/_dev/_terminal/_utils/_logger.py,sha256=jeNShEED27cNIHTe_NNx-2kUiXpSLTmi0onM6tVkqRM,888
|
46
|
-
uipath/_cli/_evals/
|
47
|
+
uipath/_cli/_evals/_runtime.py,sha256=vGoTmyQYh0UKiKQqO86k9jc8xOC7F4vkrVqW1h-81O0,5949
|
47
48
|
uipath/_cli/_evals/progress_reporter.py,sha256=m1Dio1vG-04nFTFz5ijM_j1dhudlgOzQukmTkkg6wS4,11490
|
48
49
|
uipath/_cli/_evals/_evaluators/__init__.py,sha256=jD7KNLjbsUpsESFXX11eW2MEPXDNuPp2-t-IPB-inlM,734
|
49
50
|
uipath/_cli/_evals/_evaluators/_deterministic_evaluator_base.py,sha256=BTl0puBjp9iCsU3YFfYWqk4TOz4iE19O3q1-dK6qUOI,1723
|
@@ -54,10 +55,11 @@ uipath/_cli/_evals/_evaluators/_json_similarity_evaluator.py,sha256=HpmkvuwU4Az3
|
|
54
55
|
uipath/_cli/_evals/_evaluators/_llm_as_judge_evaluator.py,sha256=nSLZ29xWqALEI53ifr79JPXjyx0T4sr7p-4NygwgAio,6594
|
55
56
|
uipath/_cli/_evals/_evaluators/_trajectory_evaluator.py,sha256=dnogQTOskpI4_cNF0Ge3hBceJJocvOgxBWAwaCWnzB0,1595
|
56
57
|
uipath/_cli/_evals/_models/__init__.py,sha256=Ewjp3u2YeTH2MmzY9LWf7EIbAoIf_nW9fMYbj7pGlPs,420
|
58
|
+
uipath/_cli/_evals/_models/_agent_execution_output.py,sha256=llvApU4JkTnNgQ5DvHPt8ee3bnV6cCANyeiebWKE07E,401
|
57
59
|
uipath/_cli/_evals/_models/_evaluation_set.py,sha256=tVHykSget-G3sOCs9bSchMYUTpFqzXVlYYbY8L9SI0c,1518
|
58
60
|
uipath/_cli/_evals/_models/_evaluators.py,sha256=l57NEVyYmzSKuoIXuGkE94Br01hAMg35fiS2MlTkaQM,2115
|
59
61
|
uipath/_cli/_push/sw_file_handler.py,sha256=AX4TKM-q6CNGw3JyBW02M8ktPZuFMcAU9LN3Ii0Q2QI,18202
|
60
|
-
uipath/_cli/_runtime/_contracts.py,sha256=
|
62
|
+
uipath/_cli/_runtime/_contracts.py,sha256=C1zocpvNWgq6FUhWJZpVvoWrH2GBS3xA229PcMovYdY,25975
|
61
63
|
uipath/_cli/_runtime/_escalation.py,sha256=x3vI98qsfRA-fL_tNkRVTFXioM5Gv2w0GFcXJJ5eQtg,7981
|
62
64
|
uipath/_cli/_runtime/_hitl.py,sha256=VKbM021nVg1HEDnTfucSLJ0LsDn83CKyUtVzofS2qTU,11369
|
63
65
|
uipath/_cli/_runtime/_logging.py,sha256=MGklGKPjYKjs7J5Jy9eplA9zCDsdtEbkZdCbTwgut_4,8311
|
@@ -71,6 +73,7 @@ uipath/_cli/_utils/_common.py,sha256=CzhhkIRfCuQ1-5HLDtjzOyt8KFs1jm6wzrBeU_v2B7c
|
|
71
73
|
uipath/_cli/_utils/_console.py,sha256=scvnrrFoFX6CE451K-PXKV7UN0DUkInbOtDZ5jAdPP0,10070
|
72
74
|
uipath/_cli/_utils/_constants.py,sha256=rS8lQ5Nzull8ytajK6lBsz398qiCp1REoAwlHtyBwF0,1415
|
73
75
|
uipath/_cli/_utils/_debug.py,sha256=zamzIR4VgbdKADAE4gbmjxDsbgF7wvdr7C5Dqp744Oc,1739
|
76
|
+
uipath/_cli/_utils/_eval_set.py,sha256=z0sTEj4lGkLZXfj9vUpMwFPL6LNMs1MSCZ43Efzoc6A,2750
|
74
77
|
uipath/_cli/_utils/_folders.py,sha256=UVJcKPfPAVR5HF4AP6EXdlNVcfEF1v5pwGCpoAgBY34,1155
|
75
78
|
uipath/_cli/_utils/_input_args.py,sha256=3LGNqVpJItvof75VGm-ZNTUMUH9-c7-YgleM5b2YgRg,5088
|
76
79
|
uipath/_cli/_utils/_parse_ast.py,sha256=8Iohz58s6bYQ7rgWtOTjrEInLJ-ETikmOMZzZdIY2Co,20072
|
@@ -103,7 +106,7 @@ uipath/_utils/_request_spec.py,sha256=iCtBLqtbWUpFG5g1wtIZBzSupKsfaRLiQFoFc_4B70
|
|
103
106
|
uipath/_utils/_ssl_context.py,sha256=xSYitos0eJc9cPHzNtHISX9PBvL6D2vas5G_GiBdLp8,1783
|
104
107
|
uipath/_utils/_url.py,sha256=-4eluSrIZCUlnQ3qU17WPJkgaC2KwF9W5NeqGnTNGGo,2512
|
105
108
|
uipath/_utils/_user_agent.py,sha256=pVJkFYacGwaQBomfwWVAvBQgdBUo62e4n3-fLIajWUU,563
|
106
|
-
uipath/_utils/constants.py,sha256=
|
109
|
+
uipath/_utils/constants.py,sha256=defPi1_4sLojgKVsbdIjkfME8O8n-iLmJnj_-n4Ox8s,1108
|
107
110
|
uipath/agent/conversation/__init__.py,sha256=5hK-Iz131mnd9m6ANnpZZffxXZLVFDQ9GTg5z9ik1oQ,5265
|
108
111
|
uipath/agent/conversation/async_stream.py,sha256=BA_8uU1DgE3VpU2KkJj0rkI3bAHLk_ZJKsajR0ipMpo,2055
|
109
112
|
uipath/agent/conversation/citation.py,sha256=42dGv-wiYx3Lt7MPuPCFTkjAlSADFSzjyNXuZHdxqvo,2253
|
@@ -114,6 +117,8 @@ uipath/agent/conversation/exchange.py,sha256=nuk1tEMBHc_skrraT17d8U6AtyJ3h07ExGQ
|
|
114
117
|
uipath/agent/conversation/message.py,sha256=1ZkEs146s79TrOAWCQwzBAEJvjAu4lQBpJ64tKXDgGE,2142
|
115
118
|
uipath/agent/conversation/meta.py,sha256=3t0eS9UHoAPHre97QTUeVbjDhnMX4zj4-qG6ju0B8wY,315
|
116
119
|
uipath/agent/conversation/tool.py,sha256=ol8XI8AVd-QNn5auXNBPcCzOkh9PPFtL7hTK3kqInkU,2191
|
120
|
+
uipath/eval/_helpers/__init__.py,sha256=GSmZMryjuO3Wo_zdxZdrHCRRsgOxsVFYkYgJ15YNC3E,86
|
121
|
+
uipath/eval/_helpers/helpers.py,sha256=iE2HHdMiAdAMLqxHkPKHpfecEtAuN5BTBqvKFTI8ciE,1315
|
117
122
|
uipath/models/__init__.py,sha256=d_DkK1AtRUetM1t2NrH5UKgvJOBiynzaKnK5pMY7aIc,1289
|
118
123
|
uipath/models/action_schema.py,sha256=lKDhP7Eix23fFvfQrqqNmSOiPyyNF6tiRpUu0VZIn_M,714
|
119
124
|
uipath/models/actions.py,sha256=ekSH4YUQR4KPOH-heBm9yOgOfirndx0In4_S4VYWeEU,2993
|
@@ -139,8 +144,8 @@ uipath/tracing/_traced.py,sha256=qeVDrds2OUnpdUIA0RhtF0kg2dlAZhyC1RRkI-qivTM,185
|
|
139
144
|
uipath/tracing/_utils.py,sha256=wJRELaPu69iY0AhV432Dk5QYf_N_ViRU4kAUG1BI1ew,10384
|
140
145
|
uipath/utils/__init__.py,sha256=VD-KXFpF_oWexFg6zyiWMkxl2HM4hYJMIUDZ1UEtGx0,105
|
141
146
|
uipath/utils/_endpoints_manager.py,sha256=iRTl5Q0XAm_YgcnMcJOXtj-8052sr6jpWuPNz6CgT0Q,8408
|
142
|
-
uipath-2.1.
|
143
|
-
uipath-2.1.
|
144
|
-
uipath-2.1.
|
145
|
-
uipath-2.1.
|
146
|
-
uipath-2.1.
|
147
|
+
uipath-2.1.43.dist-info/METADATA,sha256=dSZ_ZJS_dS7cymiRVNLerbSkiltPKaEFBhJnW4hsJ8A,6482
|
148
|
+
uipath-2.1.43.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
149
|
+
uipath-2.1.43.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
150
|
+
uipath-2.1.43.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
151
|
+
uipath-2.1.43.dist-info/RECORD,,
|