agenta 0.34.1__py3-none-any.whl → 0.34.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 agenta might be problematic. Click here for more details.
agenta/sdk/assets.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
supported_llm_models = {
|
|
2
2
|
"Anthropic": [
|
|
3
|
+
"anthropic/claude-3-7-sonnet-20250219",
|
|
3
4
|
"anthropic/claude-3-5-sonnet-20241022",
|
|
4
5
|
"anthropic/claude-3-5-sonnet-20240620",
|
|
5
6
|
"anthropic/claude-3-5-haiku-20241022",
|
|
@@ -50,6 +51,7 @@ supported_llm_models = {
|
|
|
50
51
|
"mistral/mistral-large-latest",
|
|
51
52
|
],
|
|
52
53
|
"OpenAI": [
|
|
54
|
+
"gpt-4.5-preview",
|
|
53
55
|
"gpt-3.5-turbo-1106",
|
|
54
56
|
"gpt-3.5-turbo",
|
|
55
57
|
"gpt-4",
|
|
@@ -65,6 +67,7 @@ supported_llm_models = {
|
|
|
65
67
|
"openrouter/anthropic/claude-3.5-haiku-20241022:beta",
|
|
66
68
|
"openrouter/anthropic/claude-3.5-haiku:beta",
|
|
67
69
|
"openrouter/anthropic/claude-3.5-sonnet",
|
|
70
|
+
"openrouter/anthropic/claude-3.7-sonnet",
|
|
68
71
|
"openrouter/anthropic/claude-3.5-sonnet-20240620",
|
|
69
72
|
"openrouter/anthropic/claude-3.5-sonnet-20240620:beta",
|
|
70
73
|
"openrouter/anthropic/claude-3.5-sonnet:beta",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: agenta
|
|
3
|
-
Version: 0.34.
|
|
3
|
+
Version: 0.34.4
|
|
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
|
|
@@ -154,24 +154,25 @@ The easiest way to get started is through Agenta Cloud. It is free to signup, an
|
|
|
154
154
|
|
|
155
155
|
### Self-hosting Agenta
|
|
156
156
|
|
|
157
|
-
|
|
157
|
+
1. Clone Agenta:
|
|
158
158
|
```bash
|
|
159
|
-
|
|
160
|
-
curl -L https://raw.githubusercontent.com/agenta-ai/agenta/main/docker-compose.gh.yml -o docker-compose.gh.yml
|
|
161
|
-
echo "OPENAI_API_KEY=sk-xxx" > .env
|
|
162
|
-
docker compose -f docker-compose.gh.yml --env-file .env up -d --pull always
|
|
159
|
+
git clone https://github.com/Agenta-AI/agenta && cd agenta
|
|
163
160
|
```
|
|
164
161
|
|
|
165
|
-
|
|
166
|
-
- To use a different port or customize your deployment, see our [deployment documentation](https://docs.agenta.ai/self-host/host-locally?utm_source=github&utm_medium=referral&utm_campaign=readme)
|
|
167
|
-
- For deploying on cloud platforms, refer to our guides for [AWS](https://docs.agenta.ai/self-host/deploy_remotly/host-on-aws?utm_source=github&utm_medium=referral&utm_campaign=readme), [GCP](https://docs.agenta.ai/self-host/deploy_remotly/host-on-gcp?utm_source=github&utm_medium=referral&utm_campaign=readme), or [other remote hosting options](https://docs.agenta.ai/self-host/deploy_remotly/host-remotely?utm_source=github&utm_medium=referral&utm_campaign=readme)
|
|
162
|
+
2. Edit `hosting/docker-compose/oss/.env.oss.gh` and add your LLM provider API keys.
|
|
168
163
|
|
|
169
|
-
|
|
164
|
+
3. Start Agenta services:
|
|
165
|
+
```bash
|
|
166
|
+
docker compose -f hosting/docker-compose/oss/docker-compose.gh.yml --env-file hosting/docker-compose/oss/.env.oss.gh --profile with-web up -d
|
|
167
|
+
```
|
|
170
168
|
|
|
171
|
-
|
|
169
|
+
4. Access Agenta at `http://localhost`.
|
|
170
|
+
|
|
171
|
+
For deploying on a remote host, or using different ports refers to our [self-hosting](https://docs.agenta.ai/self-host/host-locally?utm_source=github&utm_medium=referral&utm_campaign=readme) and [remote deployment documentation](https://docs.agenta.ai/self-host/host-remotely?utm_source=github&utm_medium=referral&utm_campaign=readme).
|
|
172
|
+
|
|
173
|
+
## Disabling Anonymized Tracking
|
|
172
174
|
|
|
173
|
-
|
|
174
|
-
- For CLI: Set `telemetry_tracking_enabled` to `false` in your `~/.agenta/config.toml` file.
|
|
175
|
+
By default, Agenta automatically reports anonymized basic usage statistics. This helps us understand how Agenta is used and track its overall usage and growth. This data does not include any sensitive information. To disable anonymized telemetry set `TELEMETRY_ENABLED` to `false` in your `.env` file.
|
|
175
176
|
|
|
176
177
|
|
|
177
178
|
## Contributing
|
|
@@ -198,7 +198,7 @@ agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6F
|
|
|
198
198
|
agenta/docker/docker_utils.py,sha256=rKCSb3fDPizX8zwRBaLR0oQ0TnAmyJlzBhflICcwynE,3577
|
|
199
199
|
agenta/sdk/__init__.py,sha256=WFYRfWh6IoYPSzMG2WF2Xz5amLQtzfWVscT0Q9OLpFY,2109
|
|
200
200
|
agenta/sdk/agenta_init.py,sha256=4BkwWvLOGd82BElGfv60iDqr32OKvJqivRWSpAXjRGs,8019
|
|
201
|
-
agenta/sdk/assets.py,sha256=
|
|
201
|
+
agenta/sdk/assets.py,sha256=4FN1IfZfBx9g6jW8KzT9ei4BQei9-7MasxHHD9UdeMg,7752
|
|
202
202
|
agenta/sdk/client.py,sha256=trKyBOYFZRk0v5Eptxvh87yPf50Y9CqY6Qgv4Fy-VH4,2142
|
|
203
203
|
agenta/sdk/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
204
|
agenta/sdk/context/exporting.py,sha256=16X8fgMhl58gehSlqANX97FiKxx4TkGiG4d2B0-7ZX0,516
|
|
@@ -248,7 +248,7 @@ agenta/sdk/utils/logging.py,sha256=eFzEFuYpggfIhEKv09JZRqcDzkmZ482a_E2G-X0FK7Y,4
|
|
|
248
248
|
agenta/sdk/utils/preinit.py,sha256=YlJL7RLfel0R7DFp-jK7OV-z4ZIQJM0oupYlk7g8b5o,1278
|
|
249
249
|
agenta/sdk/utils/singleton.py,sha256=17Ph7LGnnV8HkPjImruKita2ni03Ari5jr0jqm__4sc,312
|
|
250
250
|
agenta/sdk/utils/timing.py,sha256=rmBPSBuUnIu-epocUCVk0KcM2r36HuDoxkFqOZgfPhc,1507
|
|
251
|
-
agenta-0.34.
|
|
252
|
-
agenta-0.34.
|
|
253
|
-
agenta-0.34.
|
|
254
|
-
agenta-0.34.
|
|
251
|
+
agenta-0.34.4.dist-info/METADATA,sha256=fzIukEryyhyVAeVEq3-f0c-tORiYqyJVHf2LB96OO6A,29848
|
|
252
|
+
agenta-0.34.4.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
253
|
+
agenta-0.34.4.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
|
|
254
|
+
agenta-0.34.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|