agenta 0.59.4__py3-none-any.whl → 0.59.6__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/client/backend/types/custom_provider_kind.py +1 -1
- agenta/sdk/assets.py +10 -5
- agenta/sdk/managers/secrets.py +1 -1
- {agenta-0.59.4.dist-info → agenta-0.59.6.dist-info}/METADATA +3 -2
- {agenta-0.59.4.dist-info → agenta-0.59.6.dist-info}/RECORD +6 -6
- {agenta-0.59.4.dist-info → agenta-0.59.6.dist-info}/WHEEL +0 -0
agenta/sdk/assets.py
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
supported_llm_models = {
|
|
2
2
|
"Anthropic": [
|
|
3
3
|
"anthropic/claude-sonnet-4-5",
|
|
4
|
+
"anthropic/claude-haiku-4-5",
|
|
5
|
+
"anthropic/claude-opus-4-1",
|
|
4
6
|
"anthropic/claude-sonnet-4-20250514",
|
|
5
7
|
"anthropic/claude-opus-4-20250514",
|
|
6
8
|
"anthropic/claude-3-7-sonnet-20250219",
|
|
@@ -25,15 +27,18 @@ supported_llm_models = {
|
|
|
25
27
|
"deepinfra/mistralai/Mistral-7B-Instruct-v0.1",
|
|
26
28
|
],
|
|
27
29
|
"Gemini": [
|
|
30
|
+
"gemini/gemini-2.5-pro",
|
|
31
|
+
"gemini/gemini-2.5-pro-preview-05-06",
|
|
32
|
+
"gemini/gemini-2.5-flash",
|
|
33
|
+
"gemini/gemini-2.5-flash-preview-09-2025",
|
|
28
34
|
"gemini/gemini-2.5-flash-preview-05-20",
|
|
29
35
|
"gemini/gemini-2.5-flash-preview-04-17",
|
|
36
|
+
"gemini/gemini-2.5-flash-lite",
|
|
37
|
+
"gemini/gemini-2.5-flash-lite-preview-09-2025",
|
|
38
|
+
"gemini/gemini-2.0-flash",
|
|
30
39
|
"gemini/gemini-2.0-flash-001",
|
|
31
|
-
"gemini/gemini-2.5-pro-preview-05-06",
|
|
32
|
-
"gemini/gemini-2.0-flash-lite-preview-02-05",
|
|
33
|
-
"gemini/gemini-1.5-pro-latest",
|
|
34
40
|
"gemini/gemini-2.0-flash-lite",
|
|
35
|
-
"gemini/gemini-
|
|
36
|
-
"gemini/gemini-1.5-flash-8b",
|
|
41
|
+
"gemini/gemini-2.0-flash-lite-preview-02-05",
|
|
37
42
|
],
|
|
38
43
|
"Groq": [
|
|
39
44
|
"groq/deepseek-r1-distill-llama-70b",
|
agenta/sdk/managers/secrets.py
CHANGED
|
@@ -188,7 +188,7 @@ class SecretsManager:
|
|
|
188
188
|
continue
|
|
189
189
|
|
|
190
190
|
# ii). Extract Credentials if present
|
|
191
|
-
# (for custom providers -- aws bedrock/sagemaker,
|
|
191
|
+
# (for custom providers -- aws bedrock/sagemaker, vertex_ai, etc)
|
|
192
192
|
elif secret.get("kind") == "custom_provider":
|
|
193
193
|
provider_kind = provider_info.get("kind", "").lower().replace(" ", "")
|
|
194
194
|
provider_slug = secret_data.get("provider_slug", "")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agenta
|
|
3
|
-
Version: 0.59.
|
|
3
|
+
Version: 0.59.6
|
|
4
4
|
Summary: The SDK for agenta is an open-source LLMOps platform.
|
|
5
5
|
Keywords: LLMOps,LLM,evaluation,prompt engineering
|
|
6
6
|
Author: Mahmoud Mabrouk
|
|
@@ -18,12 +18,13 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Libraries
|
|
19
19
|
Requires-Dist: decorator (>=5.2.1,<6.0.0)
|
|
20
20
|
Requires-Dist: fastapi (>=0.116.0,<0.117.0)
|
|
21
|
+
Requires-Dist: google-auth (>=2.23,<3)
|
|
21
22
|
Requires-Dist: h11 (>=0.16.0,<0.17.0)
|
|
22
23
|
Requires-Dist: httpx (>=0.28.0,<0.29.0)
|
|
23
24
|
Requires-Dist: huggingface-hub (<0.31.0)
|
|
24
25
|
Requires-Dist: importlib-metadata (>=8.0.0,<9.0)
|
|
25
26
|
Requires-Dist: jinja2 (>=3.1.6,<4.0.0)
|
|
26
|
-
Requires-Dist: litellm (==1.
|
|
27
|
+
Requires-Dist: litellm (==1.78.7)
|
|
27
28
|
Requires-Dist: openai (>=1.106.0,<2.0.0)
|
|
28
29
|
Requires-Dist: opentelemetry-api (>=1.27.0,<2.0.0)
|
|
29
30
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.27.0,<2.0.0)
|
|
@@ -129,7 +129,7 @@ agenta/client/backend/types/correct_answer.py,sha256=h4BJ2I8ON1p8HbM2kl8iobkTJd0
|
|
|
129
129
|
agenta/client/backend/types/create_app_output.py,sha256=F8tM8i3-znT2uayQ6FhC8xTYG8IkWsnswa7h5B2Ba2s,542
|
|
130
130
|
agenta/client/backend/types/custom_model_settings_dto.py,sha256=Bsye9Qht6LXlX3wIEI9KTAQrBG3u9XNwjlYmnynutrA,611
|
|
131
131
|
agenta/client/backend/types/custom_provider_dto.py,sha256=27b8qw33ZiaC1SzbXj60tQsvPVi1VqltDReb-PNlfmc,914
|
|
132
|
-
agenta/client/backend/types/custom_provider_kind.py,sha256=
|
|
132
|
+
agenta/client/backend/types/custom_provider_kind.py,sha256=8Fu3E9queaumzqZhmKJ6beVPVvn5B5GYDHUNw1KhWes,499
|
|
133
133
|
agenta/client/backend/types/custom_provider_settings_dto.py,sha256=oGfqrviYadFeL5okO8ihD7ejtQME1yjJFZKCYhc9ijE,715
|
|
134
134
|
agenta/client/backend/types/data.py,sha256=iTuAneNsWlWWhKWuaw2CvT1yxU3PJS439fODg1sQ3dc,247
|
|
135
135
|
agenta/client/backend/types/delete_evaluation.py,sha256=Ajs8IiksN5crgqyavuHhbj543zIO0c9MxqzCJ26d7mo,547
|
|
@@ -307,7 +307,7 @@ agenta/config.py,sha256=0VrTqduB4g8Mt_Ll7ffFcEjKF5qjTUIxmUtTPW2ygWw,653
|
|
|
307
307
|
agenta/config.toml,sha256=sIORbhnyct2R9lJrquxhNL4pHul3O0R7iaipCoja5MY,193
|
|
308
308
|
agenta/sdk/__init__.py,sha256=6LWzIVeXpkBKgjIXyOFOJwSDDcAf9JC_3kmxaBxjB_w,2170
|
|
309
309
|
agenta/sdk/agenta_init.py,sha256=Jkfm5Fs5qy1gMY_AWiMhr_EnvVBddNRqYb8GtN19kkc,6610
|
|
310
|
-
agenta/sdk/assets.py,sha256=
|
|
310
|
+
agenta/sdk/assets.py,sha256=Np_zZbnRUSws-NxlrW1mMLyJPGM8Y-uKN6Q8Qd1dW_o,8643
|
|
311
311
|
agenta/sdk/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
312
312
|
agenta/sdk/context/running.py,sha256=3gEuUdQrJwcuN93MlXFZ6aHXNxUW6dUk_EudgaxOkCU,907
|
|
313
313
|
agenta/sdk/context/serving.py,sha256=f0Iq8Sv_CBJF7838tDecy_89K6HI7k6joWBkWHTM7yE,598
|
|
@@ -324,7 +324,7 @@ agenta/sdk/managers/__init__.py,sha256=SN-LRwG0pRRDV3u2Q4JiiSTigN3-mYpzGNM35RzT4
|
|
|
324
324
|
agenta/sdk/managers/apps.py,sha256=BeAlTJlOOM0Wh_XWgjve65Mt-LwFgib_swu-1wvGQi4,2250
|
|
325
325
|
agenta/sdk/managers/config.py,sha256=yyFxjZVf3_XfNAkZpl-qWzljYz4XB8LgPYc55JXEwG0,7494
|
|
326
326
|
agenta/sdk/managers/deployment.py,sha256=SEokjZeh6n7HRKZ92Y0WncdG49hIFx-Z3B3HAl2kmUg,1174
|
|
327
|
-
agenta/sdk/managers/secrets.py,sha256=
|
|
327
|
+
agenta/sdk/managers/secrets.py,sha256=3fd-WKJo2vs8dA_Nk4NLqf8RYG9FcvFTrnSmKBQqSm0,7459
|
|
328
328
|
agenta/sdk/managers/shared.py,sha256=kI3w74E4rS3YDORG2e-_r0Pz5KslTRzRBK7vgyOeaJA,21559
|
|
329
329
|
agenta/sdk/managers/variant.py,sha256=A5ga3mq3b0weUTXa9HO72MGaspthGcu1uK9K5OnP738,4172
|
|
330
330
|
agenta/sdk/managers/vault.py,sha256=tOJsRWSEpmNT_ysWVcK5KQMdQO4pwiK90H3rsr9BUbg,337
|
|
@@ -366,6 +366,6 @@ agenta/sdk/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
366
366
|
agenta/sdk/workflows/registry.py,sha256=4FRSeU4njMmP6xFCIteF5f_W6NVlqFTx1AM7hsaGAQk,975
|
|
367
367
|
agenta/sdk/workflows/types.py,sha256=SjYeT8FWVgwaIIC8sI3fRjKERLEA_oxuBGvYSaFqNg8,11720
|
|
368
368
|
agenta/sdk/workflows/utils.py,sha256=ILfY8DSBWLrdWIuKg6mq7rANwKiiY6sxEeFiBFhjLYM,413
|
|
369
|
-
agenta-0.59.
|
|
370
|
-
agenta-0.59.
|
|
371
|
-
agenta-0.59.
|
|
369
|
+
agenta-0.59.6.dist-info/METADATA,sha256=UZCPm9nHFNbO6R_mRwLcjn7qIza-xHv96UgZyyqW1bU,31792
|
|
370
|
+
agenta-0.59.6.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
371
|
+
agenta-0.59.6.dist-info/RECORD,,
|
|
File without changes
|