agenta 0.27.0a9__py3-none-any.whl → 0.27.0a12__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 agenta might be problematic. Click here for more details.
- agenta/__init__.py +21 -3
- agenta/client/backend/__init__.py +14 -0
- agenta/client/backend/apps/client.py +28 -20
- agenta/client/backend/client.py +25 -2
- agenta/client/backend/containers/client.py +5 -1
- agenta/client/backend/core/__init__.py +2 -1
- agenta/client/backend/core/client_wrapper.py +6 -6
- agenta/client/backend/core/file.py +33 -11
- agenta/client/backend/core/http_client.py +24 -18
- agenta/client/backend/core/pydantic_utilities.py +144 -29
- agenta/client/backend/core/request_options.py +3 -0
- agenta/client/backend/core/serialization.py +139 -42
- agenta/client/backend/evaluations/client.py +7 -2
- agenta/client/backend/evaluators/client.py +349 -1
- agenta/client/backend/observability/client.py +11 -2
- agenta/client/backend/testsets/client.py +10 -10
- agenta/client/backend/types/__init__.py +14 -0
- agenta/client/backend/types/app.py +1 -0
- agenta/client/backend/types/app_variant_response.py +3 -1
- agenta/client/backend/types/config_dto.py +32 -0
- agenta/client/backend/types/config_response_model.py +32 -0
- agenta/client/backend/types/create_span.py +3 -2
- agenta/client/backend/types/environment_output.py +1 -0
- agenta/client/backend/types/environment_output_extended.py +1 -0
- agenta/client/backend/types/evaluation.py +1 -2
- agenta/client/backend/types/evaluator.py +2 -0
- agenta/client/backend/types/evaluator_config.py +1 -0
- agenta/client/backend/types/evaluator_mapping_output_interface.py +21 -0
- agenta/client/backend/types/evaluator_output_interface.py +21 -0
- agenta/client/backend/types/human_evaluation.py +1 -2
- agenta/client/backend/types/lifecycle_dto.py +24 -0
- agenta/client/backend/types/llm_tokens.py +2 -2
- agenta/client/backend/types/reference_dto.py +23 -0
- agenta/client/backend/types/reference_request_model.py +23 -0
- agenta/client/backend/types/span.py +1 -0
- agenta/client/backend/types/span_detail.py +7 -1
- agenta/client/backend/types/test_set_output_response.py +5 -2
- agenta/client/backend/types/trace_detail.py +7 -1
- agenta/client/backend/types/with_pagination.py +4 -2
- agenta/client/backend/variants/client.py +1565 -272
- agenta/sdk/__init__.py +19 -5
- agenta/sdk/agenta_init.py +21 -7
- agenta/sdk/context/routing.py +6 -5
- agenta/sdk/decorators/routing.py +16 -5
- agenta/sdk/decorators/tracing.py +16 -9
- agenta/sdk/litellm/litellm.py +47 -36
- agenta/sdk/managers/__init__.py +6 -0
- agenta/sdk/managers/config.py +318 -0
- agenta/sdk/managers/deployment.py +45 -0
- agenta/sdk/managers/shared.py +639 -0
- agenta/sdk/managers/variant.py +182 -0
- agenta/sdk/tracing/exporters.py +0 -1
- agenta/sdk/tracing/inline.py +45 -0
- agenta/sdk/tracing/processors.py +0 -1
- agenta/sdk/types.py +47 -2
- agenta/sdk/utils/exceptions.py +31 -1
- {agenta-0.27.0a9.dist-info → agenta-0.27.0a12.dist-info}/METADATA +1 -1
- {agenta-0.27.0a9.dist-info → agenta-0.27.0a12.dist-info}/RECORD +60 -49
- agenta/sdk/config_manager.py +0 -205
- {agenta-0.27.0a9.dist-info → agenta-0.27.0a12.dist-info}/WHEEL +0 -0
- {agenta-0.27.0a9.dist-info → agenta-0.27.0a12.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from agenta.sdk.managers.shared import SharedManager
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class VariantManager(SharedManager):
|
|
7
|
+
@classmethod
|
|
8
|
+
def create(
|
|
9
|
+
cls,
|
|
10
|
+
*,
|
|
11
|
+
parameters: dict,
|
|
12
|
+
variant_slug: str,
|
|
13
|
+
#
|
|
14
|
+
app_id: Optional[str] = None,
|
|
15
|
+
app_slug: Optional[str] = None,
|
|
16
|
+
):
|
|
17
|
+
variant = SharedManager.add(
|
|
18
|
+
app_id=app_id,
|
|
19
|
+
app_slug=app_slug,
|
|
20
|
+
variant_slug=variant_slug,
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
if variant:
|
|
24
|
+
variant = SharedManager.commit(
|
|
25
|
+
parameters=parameters,
|
|
26
|
+
app_id=app_id,
|
|
27
|
+
app_slug=app_slug,
|
|
28
|
+
variant_slug=variant_slug,
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
return variant
|
|
32
|
+
|
|
33
|
+
@classmethod
|
|
34
|
+
async def acreate(
|
|
35
|
+
cls,
|
|
36
|
+
*,
|
|
37
|
+
parameters: dict,
|
|
38
|
+
variant_slug: str,
|
|
39
|
+
#
|
|
40
|
+
app_id: Optional[str] = None,
|
|
41
|
+
app_slug: Optional[str] = None,
|
|
42
|
+
):
|
|
43
|
+
variant = await SharedManager.aadd(
|
|
44
|
+
app_id=app_id,
|
|
45
|
+
app_slug=app_slug,
|
|
46
|
+
variant_slug=variant_slug,
|
|
47
|
+
)
|
|
48
|
+
if variant:
|
|
49
|
+
variant = await SharedManager.acommit(
|
|
50
|
+
parameters=parameters,
|
|
51
|
+
app_id=app_id,
|
|
52
|
+
app_slug=app_slug,
|
|
53
|
+
variant_slug=variant_slug,
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
return variant
|
|
57
|
+
|
|
58
|
+
@classmethod
|
|
59
|
+
def commit(
|
|
60
|
+
cls,
|
|
61
|
+
*,
|
|
62
|
+
parameters: dict,
|
|
63
|
+
variant_slug: str,
|
|
64
|
+
#
|
|
65
|
+
app_id: Optional[str] = None,
|
|
66
|
+
app_slug: Optional[str] = None,
|
|
67
|
+
):
|
|
68
|
+
variant = SharedManager.commit(
|
|
69
|
+
parameters=parameters,
|
|
70
|
+
app_id=app_id,
|
|
71
|
+
app_slug=app_slug,
|
|
72
|
+
variant_slug=variant_slug,
|
|
73
|
+
)
|
|
74
|
+
return variant
|
|
75
|
+
|
|
76
|
+
@classmethod
|
|
77
|
+
async def acommit(
|
|
78
|
+
cls,
|
|
79
|
+
*,
|
|
80
|
+
parameters: dict,
|
|
81
|
+
variant_slug: str,
|
|
82
|
+
#
|
|
83
|
+
app_id: Optional[str] = None,
|
|
84
|
+
app_slug: Optional[str] = None,
|
|
85
|
+
):
|
|
86
|
+
variant = await SharedManager.acommit(
|
|
87
|
+
parameters=parameters,
|
|
88
|
+
app_id=app_id,
|
|
89
|
+
app_slug=app_slug,
|
|
90
|
+
variant_slug=variant_slug,
|
|
91
|
+
)
|
|
92
|
+
return variant
|
|
93
|
+
|
|
94
|
+
@classmethod
|
|
95
|
+
def delete(
|
|
96
|
+
cls,
|
|
97
|
+
*,
|
|
98
|
+
variant_slug: str,
|
|
99
|
+
#
|
|
100
|
+
app_id: Optional[str] = None,
|
|
101
|
+
app_slug: Optional[str] = None,
|
|
102
|
+
):
|
|
103
|
+
message = SharedManager.delete(
|
|
104
|
+
app_id=app_id,
|
|
105
|
+
app_slug=app_slug,
|
|
106
|
+
variant_slug=variant_slug,
|
|
107
|
+
)
|
|
108
|
+
return message
|
|
109
|
+
|
|
110
|
+
@classmethod
|
|
111
|
+
async def adelete(
|
|
112
|
+
cls,
|
|
113
|
+
*,
|
|
114
|
+
variant_slug: str,
|
|
115
|
+
#
|
|
116
|
+
app_id: Optional[str] = None,
|
|
117
|
+
app_slug: Optional[str] = None,
|
|
118
|
+
):
|
|
119
|
+
message = await SharedManager.adelete(
|
|
120
|
+
app_id=app_id,
|
|
121
|
+
app_slug=app_slug,
|
|
122
|
+
variant_slug=variant_slug,
|
|
123
|
+
)
|
|
124
|
+
return message
|
|
125
|
+
|
|
126
|
+
@classmethod
|
|
127
|
+
def list(
|
|
128
|
+
cls,
|
|
129
|
+
*,
|
|
130
|
+
app_id: Optional[str] = None,
|
|
131
|
+
app_slug: Optional[str] = None,
|
|
132
|
+
):
|
|
133
|
+
variants = SharedManager.list(
|
|
134
|
+
app_id=app_id,
|
|
135
|
+
app_slug=app_slug,
|
|
136
|
+
)
|
|
137
|
+
return variants
|
|
138
|
+
|
|
139
|
+
@classmethod
|
|
140
|
+
async def alist(
|
|
141
|
+
cls,
|
|
142
|
+
*,
|
|
143
|
+
app_id: Optional[str] = None,
|
|
144
|
+
app_slug: Optional[str] = None,
|
|
145
|
+
):
|
|
146
|
+
variants = await SharedManager.alist(
|
|
147
|
+
app_id=app_id,
|
|
148
|
+
app_slug=app_slug,
|
|
149
|
+
)
|
|
150
|
+
return variants
|
|
151
|
+
|
|
152
|
+
@classmethod
|
|
153
|
+
def history(
|
|
154
|
+
cls,
|
|
155
|
+
*,
|
|
156
|
+
variant_slug: str,
|
|
157
|
+
#
|
|
158
|
+
app_id: Optional[str] = None,
|
|
159
|
+
app_slug: Optional[str] = None,
|
|
160
|
+
):
|
|
161
|
+
variants = SharedManager.history(
|
|
162
|
+
app_id=app_id,
|
|
163
|
+
app_slug=app_slug,
|
|
164
|
+
variant_slug=variant_slug,
|
|
165
|
+
)
|
|
166
|
+
return variants
|
|
167
|
+
|
|
168
|
+
@classmethod
|
|
169
|
+
async def ahistory(
|
|
170
|
+
cls,
|
|
171
|
+
*,
|
|
172
|
+
variant_slug: str,
|
|
173
|
+
#
|
|
174
|
+
app_id: Optional[str] = None,
|
|
175
|
+
app_slug: Optional[str] = None,
|
|
176
|
+
):
|
|
177
|
+
variants = await SharedManager.ahistory(
|
|
178
|
+
app_id=app_id,
|
|
179
|
+
app_slug=app_slug,
|
|
180
|
+
variant_slug=variant_slug,
|
|
181
|
+
)
|
|
182
|
+
return variants
|
agenta/sdk/tracing/exporters.py
CHANGED
agenta/sdk/tracing/inline.py
CHANGED
|
@@ -412,9 +412,12 @@ def _connect_tree_dfs(
|
|
|
412
412
|
### apis.fastapi.observability.opentelemetry.semconv ###
|
|
413
413
|
### ------------------------------------------------ ###
|
|
414
414
|
|
|
415
|
+
from json import loads
|
|
416
|
+
|
|
415
417
|
VERSION = "0.4.1"
|
|
416
418
|
|
|
417
419
|
V_0_4_1_ATTRIBUTES_EXACT = [
|
|
420
|
+
# OPENLLMETRY
|
|
418
421
|
("gen_ai.system", "ag.meta.system"),
|
|
419
422
|
("gen_ai.request.base_url", "ag.meta.request.base_url"),
|
|
420
423
|
("gen_ai.request.endpoint", "ag.meta.request.endpoint"),
|
|
@@ -439,12 +442,35 @@ V_0_4_1_ATTRIBUTES_EXACT = [
|
|
|
439
442
|
("db.vector.query.top_k", "ag.meta.request.top_k"),
|
|
440
443
|
("pinecone.query.top_k", "ag.meta.request.top_k"),
|
|
441
444
|
("traceloop.span.kind", "ag.type.node"),
|
|
445
|
+
("traceloop.entity.name", "ag.node.name"),
|
|
446
|
+
# OPENINFERENCE
|
|
447
|
+
("output.value", "ag.data.outputs"),
|
|
448
|
+
("input.value", "ag.data.inputs"),
|
|
449
|
+
("embedding.model_name", "ag.meta.request.model"),
|
|
450
|
+
("llm.invocation_parameters", "ag.meta.request"),
|
|
451
|
+
("llm.model_name", "ag.meta.request.model"),
|
|
452
|
+
("llm.provider", "ag.meta.provider"),
|
|
453
|
+
("llm.system", "ag.meta.system"),
|
|
442
454
|
]
|
|
443
455
|
V_0_4_1_ATTRIBUTES_PREFIX = [
|
|
456
|
+
# OPENLLMETRY
|
|
444
457
|
("gen_ai.prompt", "ag.data.inputs.prompt"),
|
|
445
458
|
("gen_ai.completion", "ag.data.outputs.completion"),
|
|
459
|
+
("llm.request.functions", "ag.data.inputs.functions"),
|
|
460
|
+
("llm.request.tools", "ag.data.inputs.tools"),
|
|
461
|
+
# OPENINFERENCE
|
|
462
|
+
("llm.token_count", "ag.metrics.unit.tokens"),
|
|
463
|
+
("llm.input_messages", "ag.data.inputs.prompt"),
|
|
464
|
+
("llm.output_messages", "ag.data.outputs.completion"),
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
V_0_4_1_ATTRIBUTES_DYNAMIC = [
|
|
468
|
+
# OPENLLMETRY
|
|
469
|
+
("traceloop.entity.input", lambda x: ("ag.data.inputs", loads(x).get("inputs"))),
|
|
470
|
+
("traceloop.entity.output", lambda x: ("ag.data.outputs", loads(x).get("outputs"))),
|
|
446
471
|
]
|
|
447
472
|
|
|
473
|
+
|
|
448
474
|
V_0_4_1_MAPS = {
|
|
449
475
|
"attributes": {
|
|
450
476
|
"exact": {
|
|
@@ -455,6 +481,9 @@ V_0_4_1_MAPS = {
|
|
|
455
481
|
"from": {otel: agenta for otel, agenta in V_0_4_1_ATTRIBUTES_PREFIX[::-1]},
|
|
456
482
|
"to": {agenta: otel for otel, agenta in V_0_4_1_ATTRIBUTES_PREFIX[::-1]},
|
|
457
483
|
},
|
|
484
|
+
"dynamic": {
|
|
485
|
+
"from": {otel: agenta for otel, agenta in V_0_4_1_ATTRIBUTES_DYNAMIC[::-1]}
|
|
486
|
+
},
|
|
458
487
|
},
|
|
459
488
|
}
|
|
460
489
|
V_0_4_1_KEYS = {
|
|
@@ -467,6 +496,9 @@ V_0_4_1_KEYS = {
|
|
|
467
496
|
"from": list(V_0_4_1_MAPS["attributes"]["prefix"]["from"].keys()),
|
|
468
497
|
"to": list(V_0_4_1_MAPS["attributes"]["prefix"]["to"].keys()),
|
|
469
498
|
},
|
|
499
|
+
"dynamic": {
|
|
500
|
+
"from": list(V_0_4_1_MAPS["attributes"]["dynamic"]["from"].keys()),
|
|
501
|
+
},
|
|
470
502
|
},
|
|
471
503
|
}
|
|
472
504
|
|
|
@@ -480,6 +512,7 @@ KEYS = {
|
|
|
480
512
|
|
|
481
513
|
CODEX = {"maps": MAPS[VERSION], "keys": KEYS[VERSION]}
|
|
482
514
|
|
|
515
|
+
|
|
483
516
|
### ------------------------------------------------ ###
|
|
484
517
|
### apis.fastapi.observability.opentelemetry.semconv ###
|
|
485
518
|
########################################################
|
|
@@ -653,6 +686,18 @@ def _parse_from_semconv(
|
|
|
653
686
|
|
|
654
687
|
del attributes[old_key]
|
|
655
688
|
|
|
689
|
+
for dynamic_key in CODEX["keys"]["attributes"]["dynamic"]["from"]:
|
|
690
|
+
if old_key == dynamic_key:
|
|
691
|
+
try:
|
|
692
|
+
new_key, new_value = CODEX["maps"]["attributes"]["dynamic"][
|
|
693
|
+
"from"
|
|
694
|
+
][dynamic_key](value)
|
|
695
|
+
|
|
696
|
+
attributes[new_key] = new_value
|
|
697
|
+
|
|
698
|
+
except: # pylint: disable=bare-except
|
|
699
|
+
pass
|
|
700
|
+
|
|
656
701
|
|
|
657
702
|
def _parse_from_links(
|
|
658
703
|
otel_span_dto: OTelSpanDTO,
|
agenta/sdk/tracing/processors.py
CHANGED
agenta/sdk/types.py
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import json
|
|
2
|
+
from dataclasses import dataclass
|
|
2
3
|
from typing import Dict, List, Optional, Any, Union
|
|
3
4
|
|
|
4
5
|
from pydantic import ConfigDict, BaseModel, HttpUrl
|
|
5
|
-
from dataclasses import dataclass
|
|
6
|
-
from typing import Union
|
|
7
6
|
|
|
8
7
|
|
|
9
8
|
@dataclass
|
|
@@ -186,3 +185,49 @@ class FileInputURL(HttpUrl):
|
|
|
186
185
|
@classmethod
|
|
187
186
|
def __schema_type_properties__(cls) -> dict:
|
|
188
187
|
return {"x-parameter": "file_url", "type": "string"}
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
class Context(BaseModel):
|
|
191
|
+
model_config = ConfigDict(extra="allow")
|
|
192
|
+
|
|
193
|
+
def to_json(self):
|
|
194
|
+
return self.model_dump()
|
|
195
|
+
|
|
196
|
+
@classmethod
|
|
197
|
+
def from_json(cls, json_str: str):
|
|
198
|
+
data = json.loads(json_str)
|
|
199
|
+
return cls(**data)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
class ReferencesResponse(BaseModel):
|
|
203
|
+
app_id: Optional[str] = None
|
|
204
|
+
app_slug: Optional[str] = None
|
|
205
|
+
variant_id: Optional[str] = None
|
|
206
|
+
variant_slug: Optional[str] = None
|
|
207
|
+
variant_version: Optional[int] = None
|
|
208
|
+
environment_id: Optional[str] = None
|
|
209
|
+
environment_slug: Optional[str] = None
|
|
210
|
+
environment_version: Optional[int] = None
|
|
211
|
+
|
|
212
|
+
def __str__(self):
|
|
213
|
+
return str(self.model_dump(exclude_none=True))
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
class LifecyclesResponse(ReferencesResponse):
|
|
217
|
+
committed_at: Optional[str] = None
|
|
218
|
+
committed_by: Optional[str] = None
|
|
219
|
+
committed_by_id: Optional[str] = None
|
|
220
|
+
deployed_at: Optional[str] = None
|
|
221
|
+
deployed_by: Optional[str] = None
|
|
222
|
+
deployed_by_id: Optional[str] = None
|
|
223
|
+
|
|
224
|
+
def __str__(self):
|
|
225
|
+
return str(self.model_dump(exclude_none=True))
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
class ConfigurationResponse(LifecyclesResponse):
|
|
229
|
+
params: Dict[str, Any]
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
class DeploymentResponse(LifecyclesResponse):
|
|
233
|
+
pass
|
agenta/sdk/utils/exceptions.py
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
from contextlib import AbstractContextManager
|
|
2
2
|
from traceback import format_exc
|
|
3
|
+
from functools import wraps
|
|
4
|
+
from inspect import iscoroutinefunction
|
|
5
|
+
|
|
3
6
|
from agenta.sdk.utils.logging import log
|
|
4
7
|
|
|
5
8
|
|
|
6
|
-
class suppress(AbstractContextManager):
|
|
9
|
+
class suppress(AbstractContextManager): # pylint: disable=invalid-name
|
|
7
10
|
def __init__(self):
|
|
8
11
|
pass
|
|
9
12
|
|
|
@@ -20,3 +23,30 @@ class suppress(AbstractContextManager):
|
|
|
20
23
|
log.error(format_exc().strip("\n"))
|
|
21
24
|
log.error("-------------------------------------------------")
|
|
22
25
|
return True
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def handle_exceptions():
|
|
29
|
+
def decorator(func):
|
|
30
|
+
is_coroutine_function = iscoroutinefunction(func)
|
|
31
|
+
|
|
32
|
+
@wraps(func)
|
|
33
|
+
async def async_wrapper(*args, **kwargs):
|
|
34
|
+
try:
|
|
35
|
+
return await func(*args, **kwargs)
|
|
36
|
+
except Exception as e:
|
|
37
|
+
log.error("--- HANDLING EXCEPTION ---")
|
|
38
|
+
log.error("--------------------------")
|
|
39
|
+
raise e
|
|
40
|
+
|
|
41
|
+
@wraps(func)
|
|
42
|
+
def sync_wrapper(*args, **kwargs):
|
|
43
|
+
try:
|
|
44
|
+
return func(*args, **kwargs)
|
|
45
|
+
except Exception as e:
|
|
46
|
+
log.error("--- HANDLING EXCEPTION ---")
|
|
47
|
+
log.error("--------------------------")
|
|
48
|
+
raise e
|
|
49
|
+
|
|
50
|
+
return async_wrapper if is_coroutine_function else sync_wrapper
|
|
51
|
+
|
|
52
|
+
return decorator
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
agenta/__init__.py,sha256=
|
|
1
|
+
agenta/__init__.py,sha256=ApHqZRQ4zkvpfKPKFgGVxc5UVM4suXddAyGheyowc2A,1484
|
|
2
2
|
agenta/cli/evaluation_commands.py,sha256=fs6492tprPId9p8eGO02Xy-NCBm2RZNJLZWcUxugwd8,474
|
|
3
3
|
agenta/cli/helper.py,sha256=P97HbNb_qzOyl5CM_MjAqWEBCdgebU6M81G_4UCmF1A,6288
|
|
4
4
|
agenta/cli/main.py,sha256=Wz0ODhoeKK3Qg_CFUhu6D909szk05tc8ZVBB6H1-w7k,9763
|
|
@@ -9,61 +9,63 @@ agenta/client/Readme.md,sha256=K-By3bNRzUIN5VgQ98pKjw4DgCM-JlcxbW0Fsj02P6M,2903
|
|
|
9
9
|
agenta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
agenta/client/api.py,sha256=r5pwYD8DWppDrV4xaNYwUmwMLjWVNfVzxK_clIboEWg,2434
|
|
11
11
|
agenta/client/api_models.py,sha256=zebfE2-0-SW1SvzyarzmSJMXqyiCLKrX2sHpzoX-RnU,623
|
|
12
|
-
agenta/client/backend/__init__.py,sha256
|
|
12
|
+
agenta/client/backend/__init__.py,sha256=Vsyg0Ir_ltqqf7uXz3dOkVLbaQ_H-pRn2EuJmIuo-dU,4367
|
|
13
13
|
agenta/client/backend/apps/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
14
|
-
agenta/client/backend/apps/client.py,sha256=
|
|
14
|
+
agenta/client/backend/apps/client.py,sha256=UWLU8uGURZ2apjpAdqhAHsLTR3lSbaTNfdfMnibXzlA,54436
|
|
15
15
|
agenta/client/backend/bases/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
16
16
|
agenta/client/backend/bases/client.py,sha256=BZsz5eXaa2voZdJXqgd5J5hPUuYvWwIcPCWyl49w-oY,6028
|
|
17
|
-
agenta/client/backend/client.py,sha256=
|
|
17
|
+
agenta/client/backend/client.py,sha256=Di3OBcvZyWv6ZRAalwkJBnPUSv8XXiZrEidy9pBR6KI,103415
|
|
18
18
|
agenta/client/backend/configs/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
19
19
|
agenta/client/backend/configs/client.py,sha256=qtrRdRuNIZBjh9Ykj7eNKhocp7dFdFQoDSbUduVjKJ0,19089
|
|
20
20
|
agenta/client/backend/containers/__init__.py,sha256=Haw2PwiPhNvM26PLQN57jY0bN-QqPoDG4VA-P_uGL3A,153
|
|
21
|
-
agenta/client/backend/containers/client.py,sha256=
|
|
21
|
+
agenta/client/backend/containers/client.py,sha256=rjN5yIBTt7BgxcSSFOvo1tJBUBO4WSDt9_EtLzxii_Y,20279
|
|
22
22
|
agenta/client/backend/containers/types/__init__.py,sha256=b6yQ-p_vsI5cpKh-Qa8xNE-M5nLHjfBvfgD4JIhqEkY,176
|
|
23
23
|
agenta/client/backend/containers/types/container_templates_response.py,sha256=IFmEkCII_FebAt3ENZByzAYXMB1vgQEeIaSPTLSzG5M,189
|
|
24
|
-
agenta/client/backend/core/__init__.py,sha256=
|
|
24
|
+
agenta/client/backend/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
|
25
25
|
agenta/client/backend/core/api_error.py,sha256=TtMtCdxXjd7Tasc9c8ooFg124nPrb2MXG-tKOXV4u9I,440
|
|
26
|
-
agenta/client/backend/core/client_wrapper.py,sha256=
|
|
26
|
+
agenta/client/backend/core/client_wrapper.py,sha256=esOteB9jDmUGJkv6EotT54nPNU42TR_kjF3pPjU6lqY,1817
|
|
27
27
|
agenta/client/backend/core/datetime_utils.py,sha256=BHjt_H3WVslcuPsr6qjJoVif_SsdLvFN0c43ABE5UiQ,1069
|
|
28
|
-
agenta/client/backend/core/file.py,sha256=
|
|
29
|
-
agenta/client/backend/core/http_client.py,sha256=
|
|
28
|
+
agenta/client/backend/core/file.py,sha256=a6kBDHyD9Za_ZiNbn1I4feRneqUepSUkFEQUKjAjrKA,2369
|
|
29
|
+
agenta/client/backend/core/http_client.py,sha256=dPzS0GHwn_j2Javq2u_w1kVju3c-LTDseeziUNI1k5U,20738
|
|
30
30
|
agenta/client/backend/core/jsonable_encoder.py,sha256=SHXw4G4n-f0IPgNkxj_-Fip3kN8NUAI-YrKxdZw8kl0,3662
|
|
31
|
-
agenta/client/backend/core/pydantic_utilities.py,sha256=
|
|
31
|
+
agenta/client/backend/core/pydantic_utilities.py,sha256=BZTSULs3wlfRQwTtsEyKlyY6SkHCtf3WxHqfhH9YSG4,12325
|
|
32
32
|
agenta/client/backend/core/query_encoder.py,sha256=8qYl5VPl1jU4cDF0X7oSU_DXjlVWY5ayigFBpNTMGOA,2150
|
|
33
33
|
agenta/client/backend/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
34
|
-
agenta/client/backend/core/request_options.py,sha256=
|
|
35
|
-
agenta/client/backend/core/serialization.py,sha256=
|
|
34
|
+
agenta/client/backend/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
35
|
+
agenta/client/backend/core/serialization.py,sha256=1VIoFHrJZZgjx5kxsUnUDbgr2v66GFgMJ_J1mqexBXA,9643
|
|
36
36
|
agenta/client/backend/environments/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
37
37
|
agenta/client/backend/environments/client.py,sha256=JG980MafNEcMX60gCtLdPQb8Ja6R603CKBPTD2Vz-qo,6038
|
|
38
38
|
agenta/client/backend/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
|
|
39
39
|
agenta/client/backend/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
40
40
|
agenta/client/backend/evaluations/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
41
|
-
agenta/client/backend/evaluations/client.py,sha256=
|
|
41
|
+
agenta/client/backend/evaluations/client.py,sha256=T7sDKXeuiihQqxW_TIGrcSShCxduZ2QqjK80nTbTg0w,46698
|
|
42
42
|
agenta/client/backend/evaluators/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
43
|
-
agenta/client/backend/evaluators/client.py,sha256=
|
|
43
|
+
agenta/client/backend/evaluators/client.py,sha256=fdfb0ZFLP-kI5jXr6F3O-wKWvWBGUXhqRXIoetyN-zQ,40405
|
|
44
44
|
agenta/client/backend/observability/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
45
|
-
agenta/client/backend/observability/client.py,sha256=
|
|
45
|
+
agenta/client/backend/observability/client.py,sha256=Fr17rjbAeb41G64thBv2FnxiDeiChMUa1b8EwH5V8tI,39687
|
|
46
46
|
agenta/client/backend/testsets/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
47
|
-
agenta/client/backend/testsets/client.py,sha256=
|
|
48
|
-
agenta/client/backend/types/__init__.py,sha256=
|
|
47
|
+
agenta/client/backend/testsets/client.py,sha256=awjS8DjX08FnEgr6LtMHroK9ysMkLqKAZHh2_1-rldE,35201
|
|
48
|
+
agenta/client/backend/types/__init__.py,sha256=GOXeKXtxRWLGTo_bpwdEw_5ilqF4pn5htQ1Zn-0I6Ko,5723
|
|
49
49
|
agenta/client/backend/types/aggregated_result.py,sha256=4WPjBzQSyPW-Q91XuBbtsicHtupzAFgnz065jpYVKi0,747
|
|
50
50
|
agenta/client/backend/types/aggregated_result_evaluator_config.py,sha256=GzU358rxyXbiDvpf9i6LqSTaHuirZV8XoodAdPKi-uY,243
|
|
51
|
-
agenta/client/backend/types/app.py,sha256=
|
|
52
|
-
agenta/client/backend/types/app_variant_response.py,sha256=
|
|
51
|
+
agenta/client/backend/types/app.py,sha256=hMPKPAx4sSUM6TSv-KzqtaJni7Kf277KVG2cbSXSIOg,608
|
|
52
|
+
agenta/client/backend/types/app_variant_response.py,sha256=lFrl63ZTceAjMvLYQyIruRUF4ycQ4bB-OXuJtPqqQ6E,1094
|
|
53
53
|
agenta/client/backend/types/app_variant_revision.py,sha256=PlBmaus97LdGhUHcIVdNEvfsYvsKnmtoupjAvclecRY,681
|
|
54
54
|
agenta/client/backend/types/base_output.py,sha256=_cYuHdi6THNGEeDmvTb1yo82JlvV9-aCVLHcl4Q-UCY,597
|
|
55
55
|
agenta/client/backend/types/body_import_testset.py,sha256=J-AH8SkA6mWgNZ5vIz12xpnhPCdZybctxQ5INVxhxgc,696
|
|
56
56
|
agenta/client/backend/types/config_db.py,sha256=nCM_3WKTCP3zko26wys5wTSn2cun9OYclwMp_vY5qjE,666
|
|
57
|
+
agenta/client/backend/types/config_dto.py,sha256=x13NXqJd46LDN5w5ejj93HkeZay_nYWvH-7xq3yVM90,1207
|
|
58
|
+
agenta/client/backend/types/config_response_model.py,sha256=v14K15XdzX9dSYb3I6Q0BMneGaKKbrmXsJTk6xAkr20,1217
|
|
57
59
|
agenta/client/backend/types/correct_answer.py,sha256=khEHspf9nszpzhswc7rSruCrcmvVdHFm7ti8JRdpXyI,592
|
|
58
60
|
agenta/client/backend/types/create_app_output.py,sha256=0_avs1u3pIU14P5ut1WOUrravDwpg2GkSj8kYsAMK9Y,600
|
|
59
|
-
agenta/client/backend/types/create_span.py,sha256=
|
|
61
|
+
agenta/client/backend/types/create_span.py,sha256=ZMWlTli2MNowD66D1O2e5ZKOE0BGD_-J36_A_a3rsxE,1609
|
|
60
62
|
agenta/client/backend/types/create_trace_response.py,sha256=Pr1NM9nLHiPVzCP8m7VQ1NIb92fOhJTmMlEUK6FrykI,643
|
|
61
63
|
agenta/client/backend/types/docker_env_vars.py,sha256=td2vhkHyYCwIC_TjlUu7hDuIXsfSJH2L7J_wGaNvw_c,600
|
|
62
|
-
agenta/client/backend/types/environment_output.py,sha256=
|
|
63
|
-
agenta/client/backend/types/environment_output_extended.py,sha256=
|
|
64
|
+
agenta/client/backend/types/environment_output.py,sha256=L0KSiTXy4tFrrplV-YnyrsBzRB25E8QSEPTQC9BWBd0,933
|
|
65
|
+
agenta/client/backend/types/environment_output_extended.py,sha256=Sr5cVBZAKekddwQPOIsMmt9diaPTsOWpyzZzOFOFxLs,1043
|
|
64
66
|
agenta/client/backend/types/environment_revision.py,sha256=fZPYZCnXAiRZSp9trp4huruCUcaanyrXnC7WF6-GhXg,748
|
|
65
67
|
agenta/client/backend/types/error.py,sha256=9efIET--nIU5El4GNEdYvkhtqIF5LtgxniKg0SookgE,617
|
|
66
|
-
agenta/client/backend/types/evaluation.py,sha256=
|
|
68
|
+
agenta/client/backend/types/evaluation.py,sha256=BtOUgIkgU-FEzVNbY2IJl0ZSVhwiIe7630hLl3f9k18,1218
|
|
67
69
|
agenta/client/backend/types/evaluation_scenario.py,sha256=AAEZS19leBYMF5ZTlXFCD5ZqAIpu1iHnN7V5KVXtKAA,1168
|
|
68
70
|
agenta/client/backend/types/evaluation_scenario_input.py,sha256=KQYQIL6RXa2C2K6JNwZXXlW9nFYw-xqCJqY5qlp8mco,648
|
|
69
71
|
agenta/client/backend/types/evaluation_scenario_output.py,sha256=-XoVgjhJryWb3XrFuEQ0s0O3TV3BsHQltehYUnxThzA,704
|
|
@@ -71,11 +73,13 @@ agenta/client/backend/types/evaluation_scenario_result.py,sha256=wOs3-2ucAL6rizT
|
|
|
71
73
|
agenta/client/backend/types/evaluation_scenario_score_update.py,sha256=xkyk7DKj99WkuWcOTOmTZ67G_GIaBVTrGUuy7Erfjec,597
|
|
72
74
|
agenta/client/backend/types/evaluation_status_enum.py,sha256=U0yabhF9EZqb0MU13MhLsuOa2wQmUQHGWDS0qawwvfE,370
|
|
73
75
|
agenta/client/backend/types/evaluation_type.py,sha256=FaI9rLp1QBUl5EE9xKtlxFhCDdcKGOx8NPcAWn3ct5o,186
|
|
74
|
-
agenta/client/backend/types/evaluator.py,sha256=
|
|
75
|
-
agenta/client/backend/types/evaluator_config.py,sha256=
|
|
76
|
+
agenta/client/backend/types/evaluator.py,sha256=Ye9m3jEg65hKsJlqWVDxNnlSNXCJAzxFX-KG7qGCPTM,843
|
|
77
|
+
agenta/client/backend/types/evaluator_config.py,sha256=3CIFKMdXJbxixiojihQSCUenr_6UlXG_0IgoCCEvdeQ,780
|
|
78
|
+
agenta/client/backend/types/evaluator_mapping_output_interface.py,sha256=KiQzlq7UCks_32TcMeF9nqYQUJK8jpxIL7HYi5ar-7s,641
|
|
79
|
+
agenta/client/backend/types/evaluator_output_interface.py,sha256=r4aU7-fUBMvdXzbJIeQ9aoFiIhH58Ofmkn_BKpTMJko,634
|
|
76
80
|
agenta/client/backend/types/get_config_response.py,sha256=uNaeYEq3VCNm3uZ1mNnxBhDzrNz0LYjuz984ASEk5Fk,676
|
|
77
81
|
agenta/client/backend/types/http_validation_error.py,sha256=bMxjckCqPguIznV-z-517GS-d2EXC9wJEg0XCcQfq_E,681
|
|
78
|
-
agenta/client/backend/types/human_evaluation.py,sha256=
|
|
82
|
+
agenta/client/backend/types/human_evaluation.py,sha256=jUNYGW6zp4UWB-SOY1oOB6FX_HtJ32cKRjUlXQzvllk,883
|
|
79
83
|
agenta/client/backend/types/human_evaluation_scenario.py,sha256=GZFGdki4Rlfly7RUhNrWpS2x8N0fHelHdk55YtxY3l0,1127
|
|
80
84
|
agenta/client/backend/types/human_evaluation_scenario_input.py,sha256=4iT1sH_hM6gOFmVicewPONFOvz_cW-Dh6HoNU-tCC0E,620
|
|
81
85
|
agenta/client/backend/types/human_evaluation_scenario_output.py,sha256=yVEFImNXK3qSy83AL3X5qypUOgJ__fumLj1bNgXgPXk,624
|
|
@@ -83,9 +87,10 @@ agenta/client/backend/types/human_evaluation_scenario_update.py,sha256=eh33QTkJN
|
|
|
83
87
|
agenta/client/backend/types/human_evaluation_update.py,sha256=PDtYJDYLEfYRaJuG6eqavgXpNhE-LDK81i9qNo7QD7s,686
|
|
84
88
|
agenta/client/backend/types/image.py,sha256=Q8mnZynlIHHwlu3XRarjJAzgfadl87qPJ-fqH2WqQBw,722
|
|
85
89
|
agenta/client/backend/types/invite_request.py,sha256=ZYcO4_O5Jjnz6uDwcFUoQ1Bn-A0F9t2S3rQTx9arwJc,607
|
|
90
|
+
agenta/client/backend/types/lifecycle_dto.py,sha256=jgOgDkq5m2zQ2S2d4USivPi-sZ2J0eaadwYv2LnghYU,742
|
|
86
91
|
agenta/client/backend/types/list_api_keys_response.py,sha256=av8nz-yhcOYiLZEfnJDxr37W7r1C8VnLLoeSgJwQSY0,701
|
|
87
92
|
agenta/client/backend/types/llm_run_rate_limit.py,sha256=XiPGznCpdS-lPDiswj6pX5aIxhMuOfGCOda7IPcB0q8,659
|
|
88
|
-
agenta/client/backend/types/llm_tokens.py,sha256
|
|
93
|
+
agenta/client/backend/types/llm_tokens.py,sha256=-DLWHVU6spcBAkMjRQaI7QH3D3h6w3iOeHK8RXZcuqI,704
|
|
89
94
|
agenta/client/backend/types/lm_providers_enum.py,sha256=TetfW4xvX51XlTuu7t6OZ6Bvhq4XXIB7Ro8jKnD2wkE,494
|
|
90
95
|
agenta/client/backend/types/new_human_evaluation.py,sha256=Rp_cu_ApObG7QBT-Hkvwer604gO6P3QnVwpIfLv0Q38,764
|
|
91
96
|
agenta/client/backend/types/new_testset.py,sha256=S8ENb_fu5CeyxTvjN5ojXuVoaauNKgfwE738svFhWNY,647
|
|
@@ -93,32 +98,34 @@ agenta/client/backend/types/organization.py,sha256=U8xVumZUcp5GnrRNJIHmaqibnxsVd
|
|
|
93
98
|
agenta/client/backend/types/organization_output.py,sha256=dXkUHfNfp_ho220_sb7EX3YmE2AqYc4rlsYngV3ELBI,595
|
|
94
99
|
agenta/client/backend/types/outputs.py,sha256=iSON-p8Feeq3laC5PK3BFe20GqLGSbYU5eI8viyvw-Y,168
|
|
95
100
|
agenta/client/backend/types/permission.py,sha256=Pwg68fQo2U3sZdyeTYwRBkKGTVsGv3_1gizwREmfuk4,1104
|
|
101
|
+
agenta/client/backend/types/reference_dto.py,sha256=VNLakAy13glLgEPIXH9o_3vcPflPkQJdo0o113lPURc,678
|
|
102
|
+
agenta/client/backend/types/reference_request_model.py,sha256=nhf4VUAfAJ-vf9fbOhcTrxk6uuqMFSoy0NhChY9Y0VQ,687
|
|
96
103
|
agenta/client/backend/types/result.py,sha256=6qD2kzmdzu8q4ywLtAyWLQEDHw-Cu5xN5GLCV-FI7_Y,700
|
|
97
104
|
agenta/client/backend/types/score.py,sha256=OAur_nJtRQmpboZfzFi2l1-zmNxFfETcl13C7OAvpMw,111
|
|
98
105
|
agenta/client/backend/types/simple_evaluation_output.py,sha256=XBm4IVY28brTIYrRQVUK7tFmxUUnqL6nKgVW5_E9PbM,731
|
|
99
|
-
agenta/client/backend/types/span.py,sha256=
|
|
100
|
-
agenta/client/backend/types/span_detail.py,sha256=
|
|
106
|
+
agenta/client/backend/types/span.py,sha256=z3VDnH3vN-NWyP_QLtuJ16N8JVcHt0RUm5ziQ32R1G0,1278
|
|
107
|
+
agenta/client/backend/types/span_detail.py,sha256=cHedPJi4rBouIkQmjfMBoOx9W7TP9t09wlOoqgvIEWs,1410
|
|
101
108
|
agenta/client/backend/types/span_status_code.py,sha256=h1D60dDCfmCI10d79QXPbgpYa4Q3n6LhEsCj9dBaxpU,162
|
|
102
109
|
agenta/client/backend/types/span_variant.py,sha256=MxGbLEYlkTge7mJcvwhhZDXdHUOOH436DEoZ9To_TAk,694
|
|
103
110
|
agenta/client/backend/types/template.py,sha256=O-2LZEElxLj4LbslKqFY8EzlkCzFSwfYMXkHcfh5XM4,651
|
|
104
111
|
agenta/client/backend/types/template_image_info.py,sha256=Bodh11Vi35CNGMmtQgLMjTi8rcUB5oNERcVwHnu4V6c,860
|
|
105
|
-
agenta/client/backend/types/test_set_output_response.py,sha256=
|
|
112
|
+
agenta/client/backend/types/test_set_output_response.py,sha256=RNOj6QtQww1pXgdpWUQTV_1Rozs9eUvNQxag_W4HmWg,767
|
|
106
113
|
agenta/client/backend/types/test_set_simple_response.py,sha256=dNftvPtUnNiGJKP9VzTFnjh3ffKxPocAG4sd45ZbHkg,618
|
|
107
|
-
agenta/client/backend/types/trace_detail.py,sha256=
|
|
114
|
+
agenta/client/backend/types/trace_detail.py,sha256=jGDWzpGi4bJXLs3BXIJGksUGZm6RsqgXi0Q8nvwTtoY,1413
|
|
108
115
|
agenta/client/backend/types/update_app_output.py,sha256=VOZS9MM_eNY2tVD7cnjiP-tUodAbuaRZed7KTONi1-E,600
|
|
109
116
|
agenta/client/backend/types/uri.py,sha256=tiY_sNZOWfG2INOhsthGx9QMnN_5Ibrqi68AkPHyDvw,567
|
|
110
117
|
agenta/client/backend/types/validation_error.py,sha256=nNDCxS4lCvY-79Yfwcnth5a1RXm51EZ_tMCbxnmzbAQ,700
|
|
111
118
|
agenta/client/backend/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
112
119
|
agenta/client/backend/types/variant_action.py,sha256=m3SWsIZF9rPfFSh3ypDA5vawKiTHwI_7_SfhyQO3OoU,645
|
|
113
120
|
agenta/client/backend/types/variant_action_enum.py,sha256=KZzhy-BKA9m8zwZlmoESywDQIn-VGyI2qCRr9-tqaks,158
|
|
114
|
-
agenta/client/backend/types/with_pagination.py,sha256=
|
|
121
|
+
agenta/client/backend/types/with_pagination.py,sha256=NseT9aXCB-cqkDDjlxEkzb1cYqbsDQEaO6tMitToR0g,798
|
|
115
122
|
agenta/client/backend/types/workspace_member_response.py,sha256=-iF-xitcARF6FqGkQKojf06O7GU2oDRbvI0mpu2Clyk,728
|
|
116
123
|
agenta/client/backend/types/workspace_permission.py,sha256=f-e3FUDOIyTmORW2P-K38WOJy3r1g5sZVBl6VUHAt74,791
|
|
117
124
|
agenta/client/backend/types/workspace_response.py,sha256=n1884dwY4C9Gm-JCyprnLfOxAVg4j9SsXL7hQdwsUl8,924
|
|
118
125
|
agenta/client/backend/types/workspace_role.py,sha256=k-ltfq7aAWGg85tTPIf8HpFMMf4gu02_X8R2fFPmB7U,286
|
|
119
126
|
agenta/client/backend/types/workspace_role_response.py,sha256=6hlRcsMmpf6Q0ejLzRKJiZo_9rygazcbJfpPq2jQZVw,693
|
|
120
127
|
agenta/client/backend/variants/__init__.py,sha256=BMR4SvsrqXC9FU8nPVzY8M9xGrBEhEGrmbgvy3iM1aE,171
|
|
121
|
-
agenta/client/backend/variants/client.py,sha256=
|
|
128
|
+
agenta/client/backend/variants/client.py,sha256=i5JeOEv4vneUeWB-babLXs_5N4Spau--jI-Lmdt4Ktk,90565
|
|
122
129
|
agenta/client/backend/variants/types/__init__.py,sha256=TrRUAyPsJ1bKg2gfW0d_S1rEu6eaYnHmr2g_URTuwPU,216
|
|
123
130
|
agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py,sha256=nbcakmo3eZpWmyX_DhS6F4jyhfV2t5zN-zOgDtM2rKQ,247
|
|
124
131
|
agenta/client/client.py,sha256=DWOGS9A8u4wu28s9jGOR4eRhf7vo4zT7GyDvrIGu59Y,19648
|
|
@@ -132,34 +139,38 @@ agenta/docker/docker-assets/entrypoint.sh,sha256=29XK8VQjQsx4hN2j-4JDy-6kQb5y4LC
|
|
|
132
139
|
agenta/docker/docker-assets/lambda_function.py,sha256=h4UZSSfqwpfsCgERv6frqwm_4JrYu9rLz3I-LxCfeEg,83
|
|
133
140
|
agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6FcH2QfA,251
|
|
134
141
|
agenta/docker/docker_utils.py,sha256=kO1q2_IR0fEAo4M-2Pt_v-zC7GxxnkLogjKFhU869Ps,3555
|
|
135
|
-
agenta/sdk/__init__.py,sha256=
|
|
136
|
-
agenta/sdk/agenta_init.py,sha256=
|
|
142
|
+
agenta/sdk/__init__.py,sha256=G-KGS3nIyzsMFc_Ct3mZ_6MuKppJg7qDnBXuz_oy1Go,1688
|
|
143
|
+
agenta/sdk/agenta_init.py,sha256=_GugAX15eqTODzpGRIcBbqF87znl1q5gD12Fw7vjPs4,10652
|
|
137
144
|
agenta/sdk/assets.py,sha256=Zv4i8MVUSB3jMODQon1mzJtYxuntmrCNjLGk8f-2fls,2856
|
|
138
145
|
agenta/sdk/client.py,sha256=trKyBOYFZRk0v5Eptxvh87yPf50Y9CqY6Qgv4Fy-VH4,2142
|
|
139
|
-
agenta/sdk/config_manager.py,sha256=HFOJpJKBkhlA0C-KPuxb4-bHNZeZqdpmx_beoX4lQw8,7997
|
|
140
146
|
agenta/sdk/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
agenta/sdk/context/routing.py,sha256=
|
|
147
|
+
agenta/sdk/context/routing.py,sha256=ycUgmJZyWhL4bHjKtUSAsTlt_0Fujr_6OpoaEH1lAN0,683
|
|
142
148
|
agenta/sdk/context/tracing.py,sha256=UmmW15UFFsvxS0myS6aD9wBk5iNepNlQi4tEQ_ejfYM,96
|
|
143
149
|
agenta/sdk/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
-
agenta/sdk/decorators/routing.py,sha256=
|
|
145
|
-
agenta/sdk/decorators/tracing.py,sha256=
|
|
150
|
+
agenta/sdk/decorators/routing.py,sha256=wfi9BaSTR7EqSxmX1IylSfR-xemkMTDUmPx5OnDQQBs,36138
|
|
151
|
+
agenta/sdk/decorators/tracing.py,sha256=rwxbxsDb6B0VaJf4qLPgyTMYNkJMFLsCiX2ZQ6W-zOw,7713
|
|
146
152
|
agenta/sdk/litellm/__init__.py,sha256=Bpz1gfHQc0MN1yolWcjifLWznv6GjHggvRGQSpxpihM,37
|
|
147
|
-
agenta/sdk/litellm/litellm.py,sha256=
|
|
153
|
+
agenta/sdk/litellm/litellm.py,sha256=J9NefQ2yvfWQy9e0zmPZiRQDz5GM2ThWAw5XM8gCaqw,8461
|
|
154
|
+
agenta/sdk/managers/__init__.py,sha256=SN-LRwG0pRRDV3u2Q4JiiSTigN3-mYpzGNM35RzT4mc,238
|
|
155
|
+
agenta/sdk/managers/config.py,sha256=t6QABH6fMVeSo_IIXBPbhb4w8Nl3KUwfY3ujHP91VVs,11726
|
|
156
|
+
agenta/sdk/managers/deployment.py,sha256=SEokjZeh6n7HRKZ92Y0WncdG49hIFx-Z3B3HAl2kmUg,1174
|
|
157
|
+
agenta/sdk/managers/shared.py,sha256=e53jckQq5PIMpjdxADOonUj7o8aGfzmSvdeH5f43rGs,21497
|
|
158
|
+
agenta/sdk/managers/variant.py,sha256=A5ga3mq3b0weUTXa9HO72MGaspthGcu1uK9K5OnP738,4172
|
|
148
159
|
agenta/sdk/router.py,sha256=mOguvtOwl2wmyAgOuWTsf98pQwpNiUILKIo67W_hR3A,119
|
|
149
160
|
agenta/sdk/tracing/__init__.py,sha256=rQNe5-zT5Kt7_CDhq-lnUIi1EYTBVzVf_MbfcIxVD98,41
|
|
150
161
|
agenta/sdk/tracing/attributes.py,sha256=zh8JQZSeYCLBeIRSopKJx6QQ-WEgw08Cr64DS_WOcT8,3833
|
|
151
162
|
agenta/sdk/tracing/context.py,sha256=PSJdhcaOXSMAuGUBySpLKPKyx8duF3TJzhUEk2ufqPc,777
|
|
152
163
|
agenta/sdk/tracing/conventions.py,sha256=JBtznBXZ3aRkGKkLl7cPwdMNh3w1G-H2Ta2YrAxbr38,950
|
|
153
|
-
agenta/sdk/tracing/exporters.py,sha256=
|
|
154
|
-
agenta/sdk/tracing/inline.py,sha256=
|
|
155
|
-
agenta/sdk/tracing/processors.py,sha256=
|
|
164
|
+
agenta/sdk/tracing/exporters.py,sha256=mFK5vrL7X-pQmyH-c9vrmGtsjSkCBOR31q2M4ZsOo80,1568
|
|
165
|
+
agenta/sdk/tracing/inline.py,sha256=aPeY-zfIZ_4m8gIO0UT7cYmv7QpEYu7Ta_2MnLg0MVI,34515
|
|
166
|
+
agenta/sdk/tracing/processors.py,sha256=8hgwC44qtPDmQ5yurKA4T6rEVx5y927w2sDHdU5GoUA,3115
|
|
156
167
|
agenta/sdk/tracing/spans.py,sha256=nqUOjjirBxB8Eacv8Qj4Ra_6rknGi3lbJdNyKmk5ODQ,3707
|
|
157
168
|
agenta/sdk/tracing/tracing.py,sha256=laInX27JUBCS_KiOqMax2Ja5UJ9X72tY5bufLbcYebo,6990
|
|
158
|
-
agenta/sdk/types.py,sha256=
|
|
169
|
+
agenta/sdk/types.py,sha256=naGZ5QYpX2HxAA8yO7xiUKs1FDPcC7rtT2K3NURifMg,6827
|
|
159
170
|
agenta/sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
171
|
agenta/sdk/utils/costs.py,sha256=i8C7ud__pThLS55XkN4YW8czXtGeXr2mx7jjcOFeiXg,5955
|
|
161
172
|
agenta/sdk/utils/debug.py,sha256=DxiCAeXxxrcEZT2CjlNA6BMvujGP4nzQ-rfb-_mLMck,2114
|
|
162
|
-
agenta/sdk/utils/exceptions.py,sha256=
|
|
173
|
+
agenta/sdk/utils/exceptions.py,sha256=AU0csJtuzswjkr8O8K-PmuOEr0vRNymKPZVRnRR_0Ts,1646
|
|
163
174
|
agenta/sdk/utils/globals.py,sha256=2HhyzWn55BbYNCZ3rT8dAxk1GGXuGQPbtq_THjaHbBw,372
|
|
164
175
|
agenta/sdk/utils/logging.py,sha256=FKzAO5eHjR_qvpEnc4tKXUA6WftmwdwYwuJK6CbSc84,379
|
|
165
176
|
agenta/sdk/utils/preinit.py,sha256=YlJL7RLfel0R7DFp-jK7OV-z4ZIQJM0oupYlk7g8b5o,1278
|
|
@@ -179,7 +190,7 @@ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR
|
|
|
179
190
|
agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
|
|
180
191
|
agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
|
|
181
192
|
agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
|
|
182
|
-
agenta-0.27.
|
|
183
|
-
agenta-0.27.
|
|
184
|
-
agenta-0.27.
|
|
185
|
-
agenta-0.27.
|
|
193
|
+
agenta-0.27.0a12.dist-info/METADATA,sha256=7YiEcddLp2Q-vb3NvqOvSAsoAyur_IA9NXRBSUul_j8,31739
|
|
194
|
+
agenta-0.27.0a12.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
195
|
+
agenta-0.27.0a12.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
|
|
196
|
+
agenta-0.27.0a12.dist-info/RECORD,,
|