agenta 0.33.0a1__py3-none-any.whl → 0.33.1__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 +2 -0
- agenta/client/backend/__init__.py +35 -23
- agenta/client/backend/admin/__init__.py +1 -0
- agenta/client/backend/admin/client.py +576 -0
- agenta/client/backend/apps/client.py +384 -2
- agenta/client/backend/client.py +22 -40
- agenta/client/backend/core/http_client.py +3 -3
- agenta/client/backend/evaluations/client.py +0 -6
- agenta/client/backend/human_evaluations/client.py +2 -6
- agenta/client/backend/observability/__init__.py +4 -0
- agenta/client/backend/observability/client.py +221 -744
- agenta/client/backend/testsets/client.py +16 -180
- agenta/client/backend/types/__init__.py +32 -22
- agenta/client/backend/types/account_response.py +24 -0
- agenta/client/backend/types/app_variant_revision.py +2 -1
- agenta/client/backend/types/{create_trace_response.py → legacy_scope_request.py} +3 -4
- agenta/client/backend/types/legacy_scopes_response.py +29 -0
- agenta/client/backend/types/{span_variant.py → legacy_user_request.py} +4 -5
- agenta/client/backend/types/{llm_tokens.py → legacy_user_response.py} +2 -4
- agenta/client/backend/types/{with_pagination.py → organization_membership_request.py} +6 -7
- agenta/client/backend/types/organization_request.py +23 -0
- agenta/client/backend/types/permission.py +4 -0
- agenta/client/backend/types/project_membership_request.py +26 -0
- agenta/client/backend/types/project_request.py +26 -0
- agenta/client/backend/types/project_scope.py +29 -0
- agenta/client/backend/types/provider_kind.py +1 -1
- agenta/client/backend/types/reference.py +22 -0
- agenta/client/backend/types/role.py +15 -0
- agenta/client/backend/types/scopes_response_model.py +22 -0
- agenta/client/backend/types/score.py +1 -1
- agenta/client/backend/types/secret_response_dto.py +2 -2
- agenta/client/backend/types/user_request.py +22 -0
- agenta/client/backend/types/workspace_membership_request.py +26 -0
- agenta/client/backend/types/workspace_request.py +25 -0
- agenta/client/backend/variants/client.py +166 -12
- agenta/client/backend/vault/client.py +11 -9
- agenta/sdk/__init__.py +3 -0
- agenta/sdk/agenta_init.py +3 -1
- agenta/sdk/assets.py +4 -4
- agenta/sdk/decorators/routing.py +95 -13
- agenta/sdk/managers/apps.py +64 -0
- agenta/sdk/managers/shared.py +2 -2
- agenta/sdk/middleware/auth.py +156 -57
- agenta/sdk/middleware/config.py +18 -14
- agenta/sdk/middleware/inline.py +1 -1
- agenta/sdk/middleware/mock.py +1 -1
- agenta/sdk/middleware/otel.py +1 -1
- agenta/sdk/middleware/vault.py +1 -1
- {agenta-0.33.0a1.dist-info → agenta-0.33.1.dist-info}/METADATA +19 -14
- {agenta-0.33.0a1.dist-info → agenta-0.33.1.dist-info}/RECORD +56 -49
- agenta/client/backend/observability_v_1/__init__.py +0 -5
- agenta/client/backend/observability_v_1/client.py +0 -763
- agenta/client/backend/types/create_span.py +0 -45
- agenta/client/backend/types/outputs.py +0 -5
- agenta/client/backend/types/span.py +0 -42
- agenta/client/backend/types/span_detail.py +0 -44
- agenta/client/backend/types/span_status_code.py +0 -5
- agenta/client/backend/types/trace_detail.py +0 -44
- /agenta/client/backend/{observability_v_1 → observability}/types/__init__.py +0 -0
- /agenta/client/backend/{observability_v_1 → observability}/types/format.py +0 -0
- /agenta/client/backend/{observability_v_1 → observability}/types/query_analytics_response.py +0 -0
- /agenta/client/backend/{observability_v_1 → observability}/types/query_traces_response.py +0 -0
- {agenta-0.33.0a1.dist-info → agenta-0.33.1.dist-info}/WHEEL +0 -0
- {agenta-0.33.0a1.dist-info → agenta-0.33.1.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: agenta
|
|
3
|
-
Version: 0.33.
|
|
3
|
+
Version: 0.33.1
|
|
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
|
|
@@ -51,7 +51,7 @@ Description-Content-Type: text/markdown
|
|
|
51
51
|
<a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ">Slack</a>
|
|
52
52
|
</p>
|
|
53
53
|
<div align="center">
|
|
54
|
-
<strong> <
|
|
54
|
+
<strong> <h1> The Open source LLMOps Platform </h1></strong>
|
|
55
55
|
Prompt playground, prompt management, evaluation, and observability
|
|
56
56
|
</div>
|
|
57
57
|
</br>
|
|
@@ -122,14 +122,14 @@ Description-Content-Type: text/markdown
|
|
|
122
122
|
|
|
123
123
|
---
|
|
124
124
|
|
|
125
|
-
|
|
125
|
+
## What is Agenta?
|
|
126
126
|
|
|
127
127
|
Agenta is a platform for building production-grade LLM applications. It helps **engineering and product teams** create reliable LLM apps faster.
|
|
128
128
|
|
|
129
129
|
|
|
130
130
|
Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LLM playground**, **evaluation**), deploying (**prompt and configuration management**), and monitoring (**LLM observability and tracing**).
|
|
131
131
|
|
|
132
|
-
|
|
132
|
+
## Features
|
|
133
133
|
- **Prompt Playground**: Experiment, iterate on prompts, and compare outputs from over 50 LLM models side by side ([docs](https://docs.agenta.ai/prompt-management/using-the-playground?utm_source=github&utm_medium=referral&utm_campaign=readme))
|
|
134
134
|
- **Custom Workflows**: Build a playground for any custom LLM workflow, such as RAG or agents. Enable all the team to easily iterate on its parameters and evaluate it from the web UI.
|
|
135
135
|
- **LLM evaluation**: Run evaluation suite from the webUI using predefined evaluators like LLM-as-a-judge, RAG evaluators, or custom code evaluators. ([docs](https://docs.agenta.ai/evaluation/overview?utm_source=github&utm_medium=referral&utm_campaign=readme))
|
|
@@ -139,8 +139,8 @@ Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LL
|
|
|
139
139
|
- **LLM Monitoring**: Track cost and latency and compare different deployments.
|
|
140
140
|
|
|
141
141
|
|
|
142
|
-
|
|
143
|
-
|
|
142
|
+
## Getting Started
|
|
143
|
+
### Agenta Cloud:
|
|
144
144
|
The easiest way to get started is through Agenta Cloud. It is free to signup, and comes with a generous free-tier.
|
|
145
145
|
|
|
146
146
|
<a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
|
|
@@ -151,16 +151,21 @@ The easiest way to get started is through Agenta Cloud. It is free to signup, an
|
|
|
151
151
|
</picture>
|
|
152
152
|
</a>
|
|
153
153
|
|
|
154
|
-
|
|
155
|
-
|
|
154
|
+
|
|
155
|
+
### Self-hosting Agenta
|
|
156
|
+
|
|
157
|
+
#### Quick Setup (Port 80)
|
|
158
|
+
```bash
|
|
156
159
|
mkdir agenta && cd agenta
|
|
157
160
|
curl -L https://raw.githubusercontent.com/agenta-ai/agenta/main/docker-compose.gh.yml -o docker-compose.gh.yml
|
|
158
161
|
docker compose -f docker-compose.gh.yml up -d
|
|
159
162
|
```
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
163
|
+
|
|
164
|
+
#### Deployment Options
|
|
165
|
+
- 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)
|
|
166
|
+
- 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)
|
|
167
|
+
|
|
168
|
+
## Disabling Anonymized Tracking
|
|
164
169
|
|
|
165
170
|
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, follow these steps:
|
|
166
171
|
|
|
@@ -168,7 +173,7 @@ By default, Agenta automatically reports anonymized basic usage statistics. This
|
|
|
168
173
|
- For CLI: Set `telemetry_tracking_enabled` to `false` in your `~/.agenta/config.toml` file.
|
|
169
174
|
|
|
170
175
|
|
|
171
|
-
|
|
176
|
+
## Contributing
|
|
172
177
|
|
|
173
178
|
We warmly welcome contributions to Agenta. Feel free to submit issues, fork the repository, and send pull requests.
|
|
174
179
|
|
|
@@ -176,7 +181,7 @@ We are usually hanging in our Slack. Feel free to [join our Slack and ask us any
|
|
|
176
181
|
|
|
177
182
|
Check out our [Contributing Guide](https://docs.agenta.ai/misc/contributing/getting-started?utm_source=github&utm_medium=referral&utm_campaign=readme) for more information.
|
|
178
183
|
|
|
179
|
-
|
|
184
|
+
### Contributors ✨
|
|
180
185
|
|
|
181
186
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
182
187
|
[](#contributors-)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
agenta/__init__.py,sha256=
|
|
1
|
+
agenta/__init__.py,sha256=7ow43fnH-LwNmk__W2FcQWBdtHRBNU8TXEiwovqM3Yg,2305
|
|
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=WJSp-kJ6j0bea64l5QJlnOPpLwTgNcN7Am4X2YZBP1A,7939
|
|
@@ -9,14 +9,16 @@ 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=2Dfi7Roh05LHoF3JD8oEbLVKmmb9ZIaTdW_Qlrls1Vc,6453
|
|
13
13
|
agenta/client/backend/access_control/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
14
14
|
agenta/client/backend/access_control/client.py,sha256=yu5RrcXizig6zVVNPghrd4K6MHFj26-2hRIPCjS3QnY,5467
|
|
15
|
+
agenta/client/backend/admin/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
16
|
+
agenta/client/backend/admin/client.py,sha256=wIRMl2ah82YdcQJDqMmM3cKXoGocY5s18QodLr8MKEc,20636
|
|
15
17
|
agenta/client/backend/apps/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
16
|
-
agenta/client/backend/apps/client.py,sha256=
|
|
18
|
+
agenta/client/backend/apps/client.py,sha256=Oq17dLukED65BrSDHWr9nylu9r04Ilt_9G9o0MHKclQ,66544
|
|
17
19
|
agenta/client/backend/bases/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
18
20
|
agenta/client/backend/bases/client.py,sha256=s8EAwrdxNkOjhDSP2-HIbqp51vNlvhXxS4nGb8YoWPk,6068
|
|
19
|
-
agenta/client/backend/client.py,sha256=
|
|
21
|
+
agenta/client/backend/client.py,sha256=H4SRAvODi6mmxY3JJy9hLepGs1n1xAfwzVr9tXshVCg,104905
|
|
20
22
|
agenta/client/backend/configs/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
21
23
|
agenta/client/backend/configs/client.py,sha256=_nuh5K5D5SuCOeckXcGv6P4ZtVdTGWQ7JhcoIclmWfY,19267
|
|
22
24
|
agenta/client/backend/containers/__init__.py,sha256=Haw2PwiPhNvM26PLQN57jY0bN-QqPoDG4VA-P_uGL3A,153
|
|
@@ -28,7 +30,7 @@ agenta/client/backend/core/api_error.py,sha256=TtMtCdxXjd7Tasc9c8ooFg124nPrb2MXG
|
|
|
28
30
|
agenta/client/backend/core/client_wrapper.py,sha256=esOteB9jDmUGJkv6EotT54nPNU42TR_kjF3pPjU6lqY,1817
|
|
29
31
|
agenta/client/backend/core/datetime_utils.py,sha256=BHjt_H3WVslcuPsr6qjJoVif_SsdLvFN0c43ABE5UiQ,1069
|
|
30
32
|
agenta/client/backend/core/file.py,sha256=mUvNH6Wc-k2mSlXCJ9VoYzvgi7NcCkhTzlW2VXxSucg,2710
|
|
31
|
-
agenta/client/backend/core/http_client.py,sha256=
|
|
33
|
+
agenta/client/backend/core/http_client.py,sha256=Wz6swfW0qdrpVNGEmf8HGdWdDTRq-0bAjsdV3xvbFxE,21004
|
|
32
34
|
agenta/client/backend/core/jsonable_encoder.py,sha256=SHXw4G4n-f0IPgNkxj_-Fip3kN8NUAI-YrKxdZw8kl0,3662
|
|
33
35
|
agenta/client/backend/core/pydantic_utilities.py,sha256=BZTSULs3wlfRQwTtsEyKlyY6SkHCtf3WxHqfhH9YSG4,12325
|
|
34
36
|
agenta/client/backend/core/query_encoder.py,sha256=8qYl5VPl1jU4cDF0X7oSU_DXjlVWY5ayigFBpNTMGOA,2150
|
|
@@ -40,24 +42,23 @@ agenta/client/backend/environments/client.py,sha256=Mq5EtUxUiKbMm33IF9OXt-eDAS9G
|
|
|
40
42
|
agenta/client/backend/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
|
|
41
43
|
agenta/client/backend/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
42
44
|
agenta/client/backend/evaluations/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
43
|
-
agenta/client/backend/evaluations/client.py,sha256=
|
|
45
|
+
agenta/client/backend/evaluations/client.py,sha256=yP9dd4C1A77cuk64W44SAD4MlGU9W-SZJOUpR0Y94dU,46844
|
|
44
46
|
agenta/client/backend/evaluators/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
45
47
|
agenta/client/backend/evaluators/client.py,sha256=Opm0eMoQoQw2OUWivOY2b4jJSe7UAgoAV2A1Lo3IQws,41245
|
|
46
48
|
agenta/client/backend/human_evaluations/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
47
|
-
agenta/client/backend/human_evaluations/client.py,sha256=
|
|
48
|
-
agenta/client/backend/observability/__init__.py,sha256=
|
|
49
|
-
agenta/client/backend/observability/client.py,sha256=
|
|
50
|
-
agenta/client/backend/
|
|
51
|
-
agenta/client/backend/
|
|
52
|
-
agenta/client/backend/
|
|
53
|
-
agenta/client/backend/
|
|
54
|
-
agenta/client/backend/observability_v_1/types/query_analytics_response.py,sha256=avbFvONr1YAv0IImookAPs596633xnMvFscdSTaA8uk,291
|
|
55
|
-
agenta/client/backend/observability_v_1/types/query_traces_response.py,sha256=0-4nNfKLnciOR7E1859HupWqcwunJe53OLgXRlxxeb8,452
|
|
49
|
+
agenta/client/backend/human_evaluations/client.py,sha256=NkZGQwsDAUmuoPTnP57xHHocRAwQy7zoDU5vSGCHlb0,54918
|
|
50
|
+
agenta/client/backend/observability/__init__.py,sha256=wAH4GHiT4W6l9j0IsC6w7wJ2GbRPcj4KsefGxvsGSrI,207
|
|
51
|
+
agenta/client/backend/observability/client.py,sha256=yogA9foWrB0Fw5WjJdJNeHm05fAOvGbkw3GdzU1fuvI,23878
|
|
52
|
+
agenta/client/backend/observability/types/__init__.py,sha256=wnukYpvztLthMEts3z74KMEZiLqa3BkBQHGRXCyfMZk,279
|
|
53
|
+
agenta/client/backend/observability/types/format.py,sha256=nXmxWCY7ZNLjzGROOBUOnjf1kBtMbv4XSboTooV-Jko,150
|
|
54
|
+
agenta/client/backend/observability/types/query_analytics_response.py,sha256=avbFvONr1YAv0IImookAPs596633xnMvFscdSTaA8uk,291
|
|
55
|
+
agenta/client/backend/observability/types/query_traces_response.py,sha256=0-4nNfKLnciOR7E1859HupWqcwunJe53OLgXRlxxeb8,452
|
|
56
56
|
agenta/client/backend/scopes/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
57
57
|
agenta/client/backend/scopes/client.py,sha256=ZMHXj0GRS-xNOLAbnjo4SNpHjOvHa-xZn8-caC508Qk,3617
|
|
58
58
|
agenta/client/backend/testsets/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
59
|
-
agenta/client/backend/testsets/client.py,sha256=
|
|
60
|
-
agenta/client/backend/types/__init__.py,sha256=
|
|
59
|
+
agenta/client/backend/testsets/client.py,sha256=EzPOeKyRRGrpcaCo1TX5vLQ0SoruAD4SrWxHvrzTx3A,34777
|
|
60
|
+
agenta/client/backend/types/__init__.py,sha256=C8f02du7AI4cjMNGf9LUKo7HexHgGfHNxDn2L2poOxY,8541
|
|
61
|
+
agenta/client/backend/types/account_response.py,sha256=2bMgMOLPsqmOy5snRetLojc92cbYwsVdkFNKUe0lPe4,799
|
|
61
62
|
agenta/client/backend/types/agenta_node_dto.py,sha256=DLZltD_ueVOfdiSZ1u2i3mu1C3kshxhcggQFFfybBdY,1747
|
|
62
63
|
agenta/client/backend/types/agenta_node_dto_nodes_value.py,sha256=ifG7dBYLphFoCgQ70ivvDXkTSlxX8w5x_9S-Glh8FlI,180
|
|
63
64
|
agenta/client/backend/types/agenta_nodes_response.py,sha256=1EoxaqN3ioELS_9rg5Bo6Y0PqqNdX2YNRCIsdO4Q-aQ,902
|
|
@@ -70,7 +71,7 @@ agenta/client/backend/types/aggregated_result_evaluator_config.py,sha256=GzU358r
|
|
|
70
71
|
agenta/client/backend/types/analytics_response.py,sha256=BDk2qyUHpiyE_EL32H9auokw57_ZmYy31cUztwJeoOw,694
|
|
71
72
|
agenta/client/backend/types/app.py,sha256=uBdmLWD9UAcOc6GZogVZp26IvAmXM20Uj0KCuGbmBP8,650
|
|
72
73
|
agenta/client/backend/types/app_variant_response.py,sha256=lFrl63ZTceAjMvLYQyIruRUF4ycQ4bB-OXuJtPqqQ6E,1094
|
|
73
|
-
agenta/client/backend/types/app_variant_revision.py,sha256=
|
|
74
|
+
agenta/client/backend/types/app_variant_revision.py,sha256=jC-JTUYXq2P5mhsnZZUX7zUbDH0Go2KpMnyqvREFhTM,717
|
|
74
75
|
agenta/client/backend/types/base_output.py,sha256=_cYuHdi6THNGEeDmvTb1yo82JlvV9-aCVLHcl4Q-UCY,597
|
|
75
76
|
agenta/client/backend/types/body_import_testset.py,sha256=7WmxuZe2Lt4CgdRhue6fHjzicWDfYFzN_6C3xkhjvXk,656
|
|
76
77
|
agenta/client/backend/types/bucket_dto.py,sha256=8uW9oIn4C0ke9PyiQdDT0y50s-jEAhGHsDlcKwAkDjc,705
|
|
@@ -80,8 +81,6 @@ agenta/client/backend/types/config_dto.py,sha256=x13NXqJd46LDN5w5ejj93HkeZay_nYW
|
|
|
80
81
|
agenta/client/backend/types/config_response_model.py,sha256=v14K15XdzX9dSYb3I6Q0BMneGaKKbrmXsJTk6xAkr20,1217
|
|
81
82
|
agenta/client/backend/types/correct_answer.py,sha256=khEHspf9nszpzhswc7rSruCrcmvVdHFm7ti8JRdpXyI,592
|
|
82
83
|
agenta/client/backend/types/create_app_output.py,sha256=0_avs1u3pIU14P5ut1WOUrravDwpg2GkSj8kYsAMK9Y,600
|
|
83
|
-
agenta/client/backend/types/create_span.py,sha256=ZMWlTli2MNowD66D1O2e5ZKOE0BGD_-J36_A_a3rsxE,1609
|
|
84
|
-
agenta/client/backend/types/create_trace_response.py,sha256=Pr1NM9nLHiPVzCP8m7VQ1NIb92fOhJTmMlEUK6FrykI,643
|
|
85
84
|
agenta/client/backend/types/delete_evaluation.py,sha256=XL7GGP1_84_hOXwBiKxSrb7wJBOSvjZPXF8gos6tR-k,605
|
|
86
85
|
agenta/client/backend/types/docker_env_vars.py,sha256=td2vhkHyYCwIC_TjlUu7hDuIXsfSJH2L7J_wGaNvw_c,600
|
|
87
86
|
agenta/client/backend/types/environment_output.py,sha256=L0KSiTXy4tFrrplV-YnyrsBzRB25E8QSEPTQC9BWBd0,933
|
|
@@ -111,11 +110,14 @@ agenta/client/backend/types/image.py,sha256=Q8mnZynlIHHwlu3XRarjJAzgfadl87qPJ-fq
|
|
|
111
110
|
agenta/client/backend/types/invite_request.py,sha256=ZYcO4_O5Jjnz6uDwcFUoQ1Bn-A0F9t2S3rQTx9arwJc,607
|
|
112
111
|
agenta/client/backend/types/legacy_analytics_response.py,sha256=-dyG9jk3OwdsGiNere46p9n7BWst1orhBR_BWVxaY6g,814
|
|
113
112
|
agenta/client/backend/types/legacy_data_point.py,sha256=jsFKtbBN_HJuxEjgLU6VqWHG3eWW7eIrPr0FAXA1bdY,718
|
|
113
|
+
agenta/client/backend/types/legacy_scope_request.py,sha256=uOaWaUna9FuQyH19hKPxhEQHQO6AueGHOVFi4R1n2sI,583
|
|
114
|
+
agenta/client/backend/types/legacy_scopes_response.py,sha256=P81G2iZZxExq4nnv8pEdZT7aOXw15jv0Dna-xFR4cso,985
|
|
115
|
+
agenta/client/backend/types/legacy_user_request.py,sha256=Vx2UGgR6Dw5xN5cED32dqtb16ljQEdn0-w4K5bFaPsU,597
|
|
116
|
+
agenta/client/backend/types/legacy_user_response.py,sha256=eKf182keSd2Nt4qyXVytqDkq5dYPn_Y_5TcWlFi-HJw,605
|
|
114
117
|
agenta/client/backend/types/lifecycle_dto.py,sha256=jgOgDkq5m2zQ2S2d4USivPi-sZ2J0eaadwYv2LnghYU,742
|
|
115
118
|
agenta/client/backend/types/link_dto.py,sha256=pcL3P3143CDTfpaOjq2prQNuO_AWsP73HW74MOmaD8c,677
|
|
116
119
|
agenta/client/backend/types/list_api_keys_response.py,sha256=av8nz-yhcOYiLZEfnJDxr37W7r1C8VnLLoeSgJwQSY0,701
|
|
117
120
|
agenta/client/backend/types/llm_run_rate_limit.py,sha256=XiPGznCpdS-lPDiswj6pX5aIxhMuOfGCOda7IPcB0q8,659
|
|
118
|
-
agenta/client/backend/types/llm_tokens.py,sha256=-DLWHVU6spcBAkMjRQaI7QH3D3h6w3iOeHK8RXZcuqI,704
|
|
119
121
|
agenta/client/backend/types/metrics_dto.py,sha256=2J58QUiXllp6rkgHMYfk_jXg9gddqgzg7F0OKByj4FI,724
|
|
120
122
|
agenta/client/backend/types/new_testset.py,sha256=S8ENb_fu5CeyxTvjN5ojXuVoaauNKgfwE738svFhWNY,647
|
|
121
123
|
agenta/client/backend/types/node_dto.py,sha256=-4oC4IPdsndGEaRK2woQpcuZ33GdqsM-i4MGzh90I7w,659
|
|
@@ -129,28 +131,31 @@ agenta/client/backend/types/o_tel_span_kind.py,sha256=ePW3OWDXA1CaF0tJc06hCSN_Fe
|
|
|
129
131
|
agenta/client/backend/types/o_tel_spans_response.py,sha256=RcSDsp98H2qz53DPAZn7b2KrUZY85Kvda5cdRtGqnt8,700
|
|
130
132
|
agenta/client/backend/types/o_tel_status_code.py,sha256=RytIFSDMwvg3oV6BbBxE-8H5zQLwPlx2M_mw7FN8-ts,209
|
|
131
133
|
agenta/client/backend/types/organization.py,sha256=U8xVumZUcp5GnrRNJIHmaqibnxsVd9Hh6Oi0QqREuvI,900
|
|
134
|
+
agenta/client/backend/types/organization_membership_request.py,sha256=Q6y9CrIpMegfJckVeO_eI4LeiFkw_wyZSzxqhFPSzIM,731
|
|
132
135
|
agenta/client/backend/types/organization_output.py,sha256=dXkUHfNfp_ho220_sb7EX3YmE2AqYc4rlsYngV3ELBI,595
|
|
133
|
-
agenta/client/backend/types/
|
|
136
|
+
agenta/client/backend/types/organization_request.py,sha256=6NG6D-t9UEQ_mSBGQfHGnGVM9cobqwVNRliUl3KlMCE,625
|
|
134
137
|
agenta/client/backend/types/parent_dto.py,sha256=eh1bH2TJe9NLS2MdKZzIFvnwfKVBU_CNNPUkq1k2HnI,572
|
|
135
|
-
agenta/client/backend/types/permission.py,sha256=
|
|
138
|
+
agenta/client/backend/types/permission.py,sha256=UMRAMyHKQilnJPF-VQGIWBsuyUebUSQbmpDH0MEuw_U,1225
|
|
139
|
+
agenta/client/backend/types/project_membership_request.py,sha256=u7bJx9ukVanbf2G9EV7h6PHkh0j5wf-NaBKPr_5nhgw,715
|
|
140
|
+
agenta/client/backend/types/project_request.py,sha256=jjWg-S0qdNsnhbLZs20txru2_Q64lIN7ZAE_50W80jI,715
|
|
141
|
+
agenta/client/backend/types/project_scope.py,sha256=Emi8j7HTYehM7N-pAjfMa39898njd3zirN3lNeNMkgo,765
|
|
136
142
|
agenta/client/backend/types/projects_response.py,sha256=yQUrCf9vfw8zje1DaYj2p64AAYb2OcRPF3lmVTmqX98,888
|
|
137
143
|
agenta/client/backend/types/provider_key_dto.py,sha256=WkvgA8qv2ceLyLyyGSv9AFewem5fN6rB4Jmw9Grmpco,645
|
|
138
|
-
agenta/client/backend/types/provider_kind.py,sha256=
|
|
144
|
+
agenta/client/backend/types/provider_kind.py,sha256=CiHeg12lPvgey2wN3cnTlFEC9UFzvb-HCUxbbpyQzrg,397
|
|
145
|
+
agenta/client/backend/types/reference.py,sha256=gRb-COQlxYY9e_X8Tsk9CM4DlY-JEQaaH7bC9ZsqhtE,634
|
|
139
146
|
agenta/client/backend/types/reference_dto.py,sha256=VNLakAy13glLgEPIXH9o_3vcPflPkQJdo0o113lPURc,678
|
|
140
147
|
agenta/client/backend/types/reference_request_model.py,sha256=nhf4VUAfAJ-vf9fbOhcTrxk6uuqMFSoy0NhChY9Y0VQ,687
|
|
141
148
|
agenta/client/backend/types/result.py,sha256=6qD2kzmdzu8q4ywLtAyWLQEDHw-Cu5xN5GLCV-FI7_Y,700
|
|
149
|
+
agenta/client/backend/types/role.py,sha256=Vs9R8jAcGSQV9NAaBXwGp-adpJZhl4B9ZUwBzoUyMlU,277
|
|
142
150
|
agenta/client/backend/types/root_dto.py,sha256=F9OYWFLSCKSR-4z8BOV-eGmNkraVakxNPjsuwCUxYuY,570
|
|
143
|
-
agenta/client/backend/types/
|
|
151
|
+
agenta/client/backend/types/scopes_response_model.py,sha256=lw3Zc-WSj4CDIq8yOV-QCNNn6powjlyPwU9wRvjkppg,697
|
|
152
|
+
agenta/client/backend/types/score.py,sha256=GPbyRb1SPv8O8xxSi4kRuRPVfb9GjTWhgmJYoyoWx5s,116
|
|
144
153
|
agenta/client/backend/types/secret_dto.py,sha256=X3E0zfATI_Lb5Hov8zl2RS5g9SH5qzX2mf2UyvXbpwg,704
|
|
145
154
|
agenta/client/backend/types/secret_kind.py,sha256=FfxqfDrPrHFLpEVDwfDu4YEiT6xOXddn2e1omGdEPMM,124
|
|
146
|
-
agenta/client/backend/types/secret_response_dto.py,sha256=
|
|
155
|
+
agenta/client/backend/types/secret_response_dto.py,sha256=2T74ipNIgjxpqzwfLDOVMJViE5ve0vJFH8AHl8JaQWs,784
|
|
147
156
|
agenta/client/backend/types/simple_evaluation_output.py,sha256=XBm4IVY28brTIYrRQVUK7tFmxUUnqL6nKgVW5_E9PbM,731
|
|
148
|
-
agenta/client/backend/types/span.py,sha256=z3VDnH3vN-NWyP_QLtuJ16N8JVcHt0RUm5ziQ32R1G0,1278
|
|
149
|
-
agenta/client/backend/types/span_detail.py,sha256=cHedPJi4rBouIkQmjfMBoOx9W7TP9t09wlOoqgvIEWs,1410
|
|
150
157
|
agenta/client/backend/types/span_dto.py,sha256=EcGDT_hhCIXa0NEUucGi-TZLBWvwIyp9AKvA-fQTzOU,1863
|
|
151
158
|
agenta/client/backend/types/span_dto_nodes_value.py,sha256=R62GF6K9mOkUe_4EuLrmvNFg7Fn6eOIsWf4-0orgqa8,256
|
|
152
|
-
agenta/client/backend/types/span_status_code.py,sha256=h1D60dDCfmCI10d79QXPbgpYa4Q3n6LhEsCj9dBaxpU,162
|
|
153
|
-
agenta/client/backend/types/span_variant.py,sha256=MxGbLEYlkTge7mJcvwhhZDXdHUOOH436DEoZ9To_TAk,694
|
|
154
159
|
agenta/client/backend/types/status_code.py,sha256=rcpuLXRoWh08O4jxILr5yXV_mKWD896YCja-M0o8fHs,158
|
|
155
160
|
agenta/client/backend/types/status_dto.py,sha256=toKLiaY2FOWscyxkNIEDvjR0PDuZ4p_M92BDC-oeXE8,658
|
|
156
161
|
agenta/client/backend/types/template.py,sha256=O-2LZEElxLj4LbslKqFY8EzlkCzFSwfYMXkHcfh5XM4,651
|
|
@@ -158,27 +163,28 @@ agenta/client/backend/types/template_image_info.py,sha256=Bodh11Vi35CNGMmtQgLMjT
|
|
|
158
163
|
agenta/client/backend/types/test_set_output_response.py,sha256=RNOj6QtQww1pXgdpWUQTV_1Rozs9eUvNQxag_W4HmWg,767
|
|
159
164
|
agenta/client/backend/types/test_set_simple_response.py,sha256=dNftvPtUnNiGJKP9VzTFnjh3ffKxPocAG4sd45ZbHkg,618
|
|
160
165
|
agenta/client/backend/types/time_dto.py,sha256=OIR33tTFvTo2xSl5MQun4ZjPPPo_7h_Xc9RuKxMLWok,624
|
|
161
|
-
agenta/client/backend/types/trace_detail.py,sha256=jGDWzpGi4bJXLs3BXIJGksUGZm6RsqgXi0Q8nvwTtoY,1413
|
|
162
166
|
agenta/client/backend/types/tree_dto.py,sha256=24o0OHCXSFwvdk59LvL4CZY1ULn600GJiUZ3lVfWR6w,645
|
|
163
167
|
agenta/client/backend/types/tree_type.py,sha256=_maP5H8vwQZ9Ps7dWbuCVg8IgBuVUOMKItvZwPUZitI,120
|
|
164
168
|
agenta/client/backend/types/update_app_output.py,sha256=VOZS9MM_eNY2tVD7cnjiP-tUodAbuaRZed7KTONi1-E,600
|
|
165
169
|
agenta/client/backend/types/uri.py,sha256=tiY_sNZOWfG2INOhsthGx9QMnN_5Ibrqi68AkPHyDvw,567
|
|
170
|
+
agenta/client/backend/types/user_request.py,sha256=MPZwEiAFDdG3a5iL6Sc0TDX0ElbKkAePWvb0HsjWxNM,591
|
|
166
171
|
agenta/client/backend/types/validation_error.py,sha256=nNDCxS4lCvY-79Yfwcnth5a1RXm51EZ_tMCbxnmzbAQ,700
|
|
167
172
|
agenta/client/backend/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
168
173
|
agenta/client/backend/types/variant_action.py,sha256=m3SWsIZF9rPfFSh3ypDA5vawKiTHwI_7_SfhyQO3OoU,645
|
|
169
174
|
agenta/client/backend/types/variant_action_enum.py,sha256=KZzhy-BKA9m8zwZlmoESywDQIn-VGyI2qCRr9-tqaks,158
|
|
170
|
-
agenta/client/backend/types/with_pagination.py,sha256=NseT9aXCB-cqkDDjlxEkzb1cYqbsDQEaO6tMitToR0g,798
|
|
171
175
|
agenta/client/backend/types/workspace_member_response.py,sha256=-iF-xitcARF6FqGkQKojf06O7GU2oDRbvI0mpu2Clyk,728
|
|
176
|
+
agenta/client/backend/types/workspace_membership_request.py,sha256=mDRMXg_VvF0Gh39eiGTQgrDhSeDgZZ-jTN5yREbJ37M,719
|
|
172
177
|
agenta/client/backend/types/workspace_permission.py,sha256=f-e3FUDOIyTmORW2P-K38WOJy3r1g5sZVBl6VUHAt74,791
|
|
178
|
+
agenta/client/backend/types/workspace_request.py,sha256=LZBw6P1CohpFkY-4Rzfu8SFLBHd7UGMFzRUr6MR5gyk,688
|
|
173
179
|
agenta/client/backend/types/workspace_response.py,sha256=n1884dwY4C9Gm-JCyprnLfOxAVg4j9SsXL7hQdwsUl8,924
|
|
174
180
|
agenta/client/backend/types/workspace_role.py,sha256=k-ltfq7aAWGg85tTPIf8HpFMMf4gu02_X8R2fFPmB7U,286
|
|
175
181
|
agenta/client/backend/types/workspace_role_response.py,sha256=6hlRcsMmpf6Q0ejLzRKJiZo_9rygazcbJfpPq2jQZVw,693
|
|
176
182
|
agenta/client/backend/variants/__init__.py,sha256=BMR4SvsrqXC9FU8nPVzY8M9xGrBEhEGrmbgvy3iM1aE,171
|
|
177
|
-
agenta/client/backend/variants/client.py,sha256=
|
|
183
|
+
agenta/client/backend/variants/client.py,sha256=8pBJ0EDvlafgW1dbrwyGKKBTfHZrzCHeiNRmEMQQWxY,97959
|
|
178
184
|
agenta/client/backend/variants/types/__init__.py,sha256=TrRUAyPsJ1bKg2gfW0d_S1rEu6eaYnHmr2g_URTuwPU,216
|
|
179
185
|
agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py,sha256=nbcakmo3eZpWmyX_DhS6F4jyhfV2t5zN-zOgDtM2rKQ,247
|
|
180
186
|
agenta/client/backend/vault/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
181
|
-
agenta/client/backend/vault/client.py,sha256=
|
|
187
|
+
agenta/client/backend/vault/client.py,sha256=eqqET6gmxqE2HK906beDb81ynFocF4IjD74GbxoeA5U,21924
|
|
182
188
|
agenta/client/client.py,sha256=4knrINpRsKDHn--_IhFTZY4jjZNxDNxiCiVbRIads_0,19622
|
|
183
189
|
agenta/client/exceptions.py,sha256=cxLjjKvZKlUgBxt4Vn9J_SsezJPPNHvrZxnoq-D6zmw,94
|
|
184
190
|
agenta/config.py,sha256=0VrTqduB4g8Mt_Ll7ffFcEjKF5qjTUIxmUtTPW2ygWw,653
|
|
@@ -190,37 +196,38 @@ agenta/docker/docker-assets/entrypoint.sh,sha256=29XK8VQjQsx4hN2j-4JDy-6kQb5y4LC
|
|
|
190
196
|
agenta/docker/docker-assets/lambda_function.py,sha256=h4UZSSfqwpfsCgERv6frqwm_4JrYu9rLz3I-LxCfeEg,83
|
|
191
197
|
agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6FcH2QfA,251
|
|
192
198
|
agenta/docker/docker_utils.py,sha256=kO1q2_IR0fEAo4M-2Pt_v-zC7GxxnkLogjKFhU869Ps,3555
|
|
193
|
-
agenta/sdk/__init__.py,sha256=
|
|
194
|
-
agenta/sdk/agenta_init.py,sha256=
|
|
195
|
-
agenta/sdk/assets.py,sha256=
|
|
199
|
+
agenta/sdk/__init__.py,sha256=WFYRfWh6IoYPSzMG2WF2Xz5amLQtzfWVscT0Q9OLpFY,2109
|
|
200
|
+
agenta/sdk/agenta_init.py,sha256=4BkwWvLOGd82BElGfv60iDqr32OKvJqivRWSpAXjRGs,8019
|
|
201
|
+
agenta/sdk/assets.py,sha256=jS78dd1E139rp7_xscKIBG0s3BW2S1x_p_VqkfdylVU,3056
|
|
196
202
|
agenta/sdk/client.py,sha256=trKyBOYFZRk0v5Eptxvh87yPf50Y9CqY6Qgv4Fy-VH4,2142
|
|
197
203
|
agenta/sdk/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
204
|
agenta/sdk/context/exporting.py,sha256=16X8fgMhl58gehSlqANX97FiKxx4TkGiG4d2B0-7ZX0,516
|
|
199
205
|
agenta/sdk/context/routing.py,sha256=FEsjw8EttI1SMyUo96ptcUsvHJnhoKwdr1szlkxxJNU,598
|
|
200
206
|
agenta/sdk/context/tracing.py,sha256=zp7T_wLVkR-V1c0k7UAN69rwH9VV7MhoZD_IdNu-_RE,649
|
|
201
207
|
agenta/sdk/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
-
agenta/sdk/decorators/routing.py,sha256=
|
|
208
|
+
agenta/sdk/decorators/routing.py,sha256=w7ifQsNPkzyv4FSeTTJvRn03x_Sd07FTs-r5dlsP-N0,24802
|
|
203
209
|
agenta/sdk/decorators/tracing.py,sha256=Wf7KWR1NknXlQEdB2sjMFrcSI-tSSvO9XubN-Ro5tkU,9216
|
|
204
210
|
agenta/sdk/litellm/__init__.py,sha256=Bpz1gfHQc0MN1yolWcjifLWznv6GjHggvRGQSpxpihM,37
|
|
205
211
|
agenta/sdk/litellm/litellm.py,sha256=Xx_YJu05BYkmIe6uObjS6DwzjgwfNytGWf807Zh0vcU,10153
|
|
206
212
|
agenta/sdk/litellm/mockllm.py,sha256=8V6dqdv8eA4P-VoXIwHNYlIjHG189P14POSfSfluVw0,678
|
|
207
213
|
agenta/sdk/litellm/mocks/__init__.py,sha256=c-afSm0YkiHyyaLegvtFs6WuWZTl2Q7Fq_iUoxqBbQc,616
|
|
208
214
|
agenta/sdk/managers/__init__.py,sha256=SN-LRwG0pRRDV3u2Q4JiiSTigN3-mYpzGNM35RzT4mc,238
|
|
215
|
+
agenta/sdk/managers/apps.py,sha256=RSE5ER-a0IHo7iZrcQLshQZMemPTfAVsBfR8H1J-ryQ,1713
|
|
209
216
|
agenta/sdk/managers/config.py,sha256=8-TJn56SssNjfxCY7NhDwqL4in5gtPeMrsvyEf-W_u4,7421
|
|
210
217
|
agenta/sdk/managers/deployment.py,sha256=SEokjZeh6n7HRKZ92Y0WncdG49hIFx-Z3B3HAl2kmUg,1174
|
|
211
218
|
agenta/sdk/managers/secrets.py,sha256=HAXswBOTbF_LydoNGnQgHr-KVqdFUOvLujUg6S_5taM,878
|
|
212
|
-
agenta/sdk/managers/shared.py,sha256=
|
|
219
|
+
agenta/sdk/managers/shared.py,sha256=vUhO2thObHxCIowyiM_KFsxPY2q6Rv_lHr2Up8WvFjg,21523
|
|
213
220
|
agenta/sdk/managers/variant.py,sha256=A5ga3mq3b0weUTXa9HO72MGaspthGcu1uK9K5OnP738,4172
|
|
214
221
|
agenta/sdk/managers/vault.py,sha256=054ce9X_xKa2M4NtQWz-GugO6q_pYVWCP3IxbAJJcRw,337
|
|
215
222
|
agenta/sdk/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
|
-
agenta/sdk/middleware/auth.py,sha256=
|
|
223
|
+
agenta/sdk/middleware/auth.py,sha256=T7-TEInVXclnM84SLsvXQlQAgL1wfyuGfjMsjDjEeL8,10859
|
|
217
224
|
agenta/sdk/middleware/cache.py,sha256=-_e3_6f4cPfpuUpGRK_ZQvUx_54ez68db4SnBwfuESk,1078
|
|
218
|
-
agenta/sdk/middleware/config.py,sha256=
|
|
225
|
+
agenta/sdk/middleware/config.py,sha256=Mckj-xwIWj06fpMLrz43Ookn8Q7MuvqkF1mDmG17l20,7614
|
|
219
226
|
agenta/sdk/middleware/cors.py,sha256=q3r7lGkrIdMcT_vuhsburMcjG7pyl7w0ycxrIrGJ2e8,921
|
|
220
|
-
agenta/sdk/middleware/inline.py,sha256=
|
|
221
|
-
agenta/sdk/middleware/mock.py,sha256=
|
|
222
|
-
agenta/sdk/middleware/otel.py,sha256=
|
|
223
|
-
agenta/sdk/middleware/vault.py,sha256=
|
|
227
|
+
agenta/sdk/middleware/inline.py,sha256=utPuSn34WI_yfLK46xRYlJhRdvKvNA1Z1lWhhOLXoa8,903
|
|
228
|
+
agenta/sdk/middleware/mock.py,sha256=kMG-yefb4N39Ds7VuniwjW5_IPWbnauhiLFyC1Bkyak,760
|
|
229
|
+
agenta/sdk/middleware/otel.py,sha256=fXAYxKOdrCuWdDAYyWSCX4VLh5aNCWicAFi2C-p7wZY,1043
|
|
230
|
+
agenta/sdk/middleware/vault.py,sha256=AsRa1mo9cNAh7p162U3NUhMlJpRzxOnojacqXL8nYnA,4313
|
|
224
231
|
agenta/sdk/router.py,sha256=mOguvtOwl2wmyAgOuWTsf98pQwpNiUILKIo67W_hR3A,119
|
|
225
232
|
agenta/sdk/tracing/__init__.py,sha256=rQNe5-zT5Kt7_CDhq-lnUIi1EYTBVzVf_MbfcIxVD98,41
|
|
226
233
|
agenta/sdk/tracing/attributes.py,sha256=zh8JQZSeYCLBeIRSopKJx6QQ-WEgw08Cr64DS_WOcT8,3833
|
|
@@ -256,7 +263,7 @@ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR
|
|
|
256
263
|
agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
|
|
257
264
|
agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
|
|
258
265
|
agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
|
|
259
|
-
agenta-0.33.
|
|
260
|
-
agenta-0.33.
|
|
261
|
-
agenta-0.33.
|
|
262
|
-
agenta-0.33.
|
|
266
|
+
agenta-0.33.1.dist-info/METADATA,sha256=0AV1x8A-NY-9Dup_M_1RhTH3-ieFTgEtJA07Atm49fg,30171
|
|
267
|
+
agenta-0.33.1.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
268
|
+
agenta-0.33.1.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
|
|
269
|
+
agenta-0.33.1.dist-info/RECORD,,
|