agenta 0.32.0a1__py3-none-any.whl → 0.33.0__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.
- agenta/__init__.py +2 -0
- agenta/client/backend/__init__.py +39 -31
- agenta/client/backend/admin/__init__.py +1 -0
- agenta/client/backend/admin/client.py +576 -0
- agenta/client/backend/apps/client.py +450 -68
- agenta/client/backend/bases/client.py +10 -10
- agenta/client/backend/client.py +112 -122
- agenta/client/backend/containers/client.py +70 -28
- agenta/client/backend/core/http_client.py +3 -3
- agenta/client/backend/environments/client.py +8 -8
- agenta/client/backend/evaluations/client.py +46 -52
- agenta/client/backend/evaluators/client.py +32 -32
- agenta/client/backend/human_evaluations/__init__.py +1 -0
- agenta/client/backend/human_evaluations/client.py +1692 -0
- agenta/client/backend/observability/__init__.py +4 -0
- agenta/client/backend/observability/client.py +221 -744
- agenta/client/backend/testsets/client.py +38 -202
- agenta/client/backend/types/__init__.py +34 -28
- 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 → delete_evaluation.py} +2 -3
- agenta/client/backend/types/{evaluation_scenario_score_update.py → legacy_scope_request.py} +2 -2
- agenta/client/backend/types/legacy_scopes_response.py +29 -0
- agenta/client/backend/types/{human_evaluation_update.py → legacy_user_request.py} +4 -4
- agenta/client/backend/types/{span_variant.py → legacy_user_response.py} +2 -4
- agenta/client/backend/types/organization_membership_request.py +25 -0
- agenta/client/backend/types/organization_request.py +23 -0
- agenta/client/backend/types/permission.py +4 -0
- agenta/client/backend/types/{llm_tokens.py → project_membership_request.py} +8 -5
- 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 +208 -42
- 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 +129 -23
- agenta/sdk/decorators/tracing.py +16 -4
- agenta/sdk/litellm/litellm.py +44 -8
- agenta/sdk/litellm/mockllm.py +2 -2
- agenta/sdk/litellm/mocks/__init__.py +9 -3
- agenta/sdk/managers/apps.py +64 -0
- agenta/sdk/managers/shared.py +2 -2
- agenta/sdk/middleware/auth.py +156 -53
- agenta/sdk/middleware/config.py +28 -16
- 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/sdk/tracing/exporters.py +0 -1
- agenta/sdk/tracing/inline.py +26 -30
- agenta/sdk/types.py +12 -9
- {agenta-0.32.0a1.dist-info → agenta-0.33.0.dist-info}/METADATA +23 -20
- {agenta-0.32.0a1.dist-info → agenta-0.33.0.dist-info}/RECORD +69 -63
- 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/human_evaluation_scenario_update.py +0 -30
- agenta/client/backend/types/new_human_evaluation.py +0 -27
- 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/types/with_pagination.py +0 -26
- /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.32.0a1.dist-info → agenta-0.33.0.dist-info}/WHEEL +0 -0
- {agenta-0.32.0a1.dist-info → agenta-0.33.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: agenta
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.33.0
|
|
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
|
|
@@ -19,12 +19,9 @@ Requires-Dist: cachetools (>=5.3.3,<6.0.0)
|
|
|
19
19
|
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
20
20
|
Requires-Dist: docker (>=6.1.1,<8.0.0)
|
|
21
21
|
Requires-Dist: fastapi (>=0.100.0)
|
|
22
|
-
Requires-Dist: google-generativeai (>=0.8.3,<0.9.0)
|
|
23
22
|
Requires-Dist: httpx (>=0.24,<0.28)
|
|
24
23
|
Requires-Dist: importlib-metadata (>=8.0.0,<9.0)
|
|
25
24
|
Requires-Dist: litellm (>=1.48.0,<2.0.0)
|
|
26
|
-
Requires-Dist: mangum (>=0.19.0,<0.20.0)
|
|
27
|
-
Requires-Dist: openai (>=1.59.7,<2.0.0)
|
|
28
25
|
Requires-Dist: opentelemetry-api (>=1.27.0,<2.0.0)
|
|
29
26
|
Requires-Dist: opentelemetry-exporter-otlp (>=1.27.0,<2.0.0)
|
|
30
27
|
Requires-Dist: opentelemetry-sdk (>=1.27.0,<2.0.0)
|
|
@@ -51,10 +48,10 @@ Description-Content-Type: text/markdown
|
|
|
51
48
|
<p align="center">
|
|
52
49
|
<a href="https://docs.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">Documentation</a> |
|
|
53
50
|
<a href="https://agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">Website</a> |
|
|
54
|
-
<a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-
|
|
51
|
+
<a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ">Slack</a>
|
|
55
52
|
</p>
|
|
56
53
|
<div align="center">
|
|
57
|
-
<strong> <
|
|
54
|
+
<strong> <h1> The Open source LLMOps Platform </h1></strong>
|
|
58
55
|
Prompt playground, prompt management, evaluation, and observability
|
|
59
56
|
</div>
|
|
60
57
|
</br>
|
|
@@ -78,7 +75,7 @@ Description-Content-Type: text/markdown
|
|
|
78
75
|
</p>
|
|
79
76
|
|
|
80
77
|
<p align="center">
|
|
81
|
-
<a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-
|
|
78
|
+
<a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ">
|
|
82
79
|
<img src="https://img.shields.io/badge/JOIN US ON SLACK-4A154B?style=for-the-badge&logo=slack&logoColor=white" />
|
|
83
80
|
</a>
|
|
84
81
|
<a href="https://www.linkedin.com/company/agenta-ai/">
|
|
@@ -125,14 +122,14 @@ Description-Content-Type: text/markdown
|
|
|
125
122
|
|
|
126
123
|
---
|
|
127
124
|
|
|
128
|
-
|
|
125
|
+
## What is Agenta?
|
|
129
126
|
|
|
130
127
|
Agenta is a platform for building production-grade LLM applications. It helps **engineering and product teams** create reliable LLM apps faster.
|
|
131
128
|
|
|
132
129
|
|
|
133
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**).
|
|
134
131
|
|
|
135
|
-
|
|
132
|
+
## Features
|
|
136
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))
|
|
137
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.
|
|
138
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))
|
|
@@ -142,8 +139,8 @@ Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LL
|
|
|
142
139
|
- **LLM Monitoring**: Track cost and latency and compare different deployments.
|
|
143
140
|
|
|
144
141
|
|
|
145
|
-
|
|
146
|
-
|
|
142
|
+
## Getting Started
|
|
143
|
+
### Agenta Cloud:
|
|
147
144
|
The easiest way to get started is through Agenta Cloud. It is free to signup, and comes with a generous free-tier.
|
|
148
145
|
|
|
149
146
|
<a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
|
|
@@ -154,14 +151,21 @@ The easiest way to get started is through Agenta Cloud. It is free to signup, an
|
|
|
154
151
|
</picture>
|
|
155
152
|
</a>
|
|
156
153
|
|
|
157
|
-
|
|
158
|
-
|
|
154
|
+
|
|
155
|
+
### Self-hosting Agenta
|
|
156
|
+
|
|
157
|
+
#### Quick Setup (Port 80)
|
|
158
|
+
```bash
|
|
159
159
|
mkdir agenta && cd agenta
|
|
160
160
|
curl -L https://raw.githubusercontent.com/agenta-ai/agenta/main/docker-compose.gh.yml -o docker-compose.gh.yml
|
|
161
161
|
docker compose -f docker-compose.gh.yml up -d
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
|
|
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
|
|
165
169
|
|
|
166
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:
|
|
167
171
|
|
|
@@ -169,20 +173,18 @@ By default, Agenta automatically reports anonymized basic usage statistics. This
|
|
|
169
173
|
- For CLI: Set `telemetry_tracking_enabled` to `false` in your `~/.agenta/config.toml` file.
|
|
170
174
|
|
|
171
175
|
|
|
172
|
-
|
|
176
|
+
## Contributing
|
|
173
177
|
|
|
174
178
|
We warmly welcome contributions to Agenta. Feel free to submit issues, fork the repository, and send pull requests.
|
|
175
179
|
|
|
176
|
-
We are usually hanging in our Slack. Feel free to [join our Slack and ask us anything](https://join.slack.com/t/agenta-hq/shared_invite/zt-
|
|
180
|
+
We are usually hanging in our Slack. Feel free to [join our Slack and ask us anything](https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ)
|
|
177
181
|
|
|
178
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.
|
|
179
183
|
|
|
180
|
-
|
|
184
|
+
### Contributors ✨
|
|
181
185
|
|
|
182
186
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
183
|
-
|
|
184
|
-
[](#contributors-)
|
|
185
|
-
|
|
187
|
+
[](#contributors-)
|
|
186
188
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
187
189
|
|
|
188
190
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
@@ -253,6 +255,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
253
255
|
<td align="center" valign="top" width="14.28%"><a href="https://ashrafchowdury.me"><img src="https://avatars.githubusercontent.com/u/87828904?v=4?s=100" width="100px;" alt="Ashraf Chowdury"/><br /><sub><b>Ashraf Chowdury</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/issues?q=author%3Aashrafchowdury" title="Bug reports">🐛</a> <a href="https://github.com/Agenta-AI/agenta/commits?author=ashrafchowdury" title="Code">💻</a></td>
|
|
254
256
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jp-agenta"><img src="https://avatars.githubusercontent.com/u/174311389?v=4?s=100" width="100px;" alt="jp-agenta"/><br /><sub><b>jp-agenta</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=jp-agenta" title="Code">💻</a> <a href="https://github.com/Agenta-AI/agenta/issues?q=author%3Ajp-agenta" title="Bug reports">🐛</a></td>
|
|
255
257
|
<td align="center" valign="top" width="14.28%"><a href="https://mrunhap.github.io"><img src="https://avatars.githubusercontent.com/u/24653356?v=4?s=100" width="100px;" alt="Mr Unhappy"/><br /><sub><b>Mr Unhappy</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/issues?q=author%3Amrunhap" title="Bug reports">🐛</a> <a href="#infra-mrunhap" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
|
|
258
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/morenobonaventura"><img src="https://avatars.githubusercontent.com/u/2118854?v=4?s=100" width="100px;" alt="Moreno Bonaventura"/><br /><sub><b>Moreno Bonaventura</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/issues?q=author%3Amorenobonaventura" title="Bug reports">🐛</a></td>
|
|
256
259
|
</tr>
|
|
257
260
|
</tbody>
|
|
258
261
|
</table>
|
|
@@ -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,18 +9,20 @@ 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
|
-
agenta/client/backend/bases/client.py,sha256=
|
|
19
|
-
agenta/client/backend/client.py,sha256=
|
|
20
|
+
agenta/client/backend/bases/client.py,sha256=s8EAwrdxNkOjhDSP2-HIbqp51vNlvhXxS4nGb8YoWPk,6068
|
|
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
|
|
23
|
-
agenta/client/backend/containers/client.py,sha256=
|
|
25
|
+
agenta/client/backend/containers/client.py,sha256=8yqtMI3Pkt25iSRCr6E70WsvUVLhxHKxdEGWq4UJnkY,21445
|
|
24
26
|
agenta/client/backend/containers/types/__init__.py,sha256=b6yQ-p_vsI5cpKh-Qa8xNE-M5nLHjfBvfgD4JIhqEkY,176
|
|
25
27
|
agenta/client/backend/containers/types/container_templates_response.py,sha256=IFmEkCII_FebAt3ENZByzAYXMB1vgQEeIaSPTLSzG5M,189
|
|
26
28
|
agenta/client/backend/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
|
@@ -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
|
|
@@ -36,26 +38,27 @@ agenta/client/backend/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4
|
|
|
36
38
|
agenta/client/backend/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
37
39
|
agenta/client/backend/core/serialization.py,sha256=1VIoFHrJZZgjx5kxsUnUDbgr2v66GFgMJ_J1mqexBXA,9643
|
|
38
40
|
agenta/client/backend/environments/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
39
|
-
agenta/client/backend/environments/client.py,sha256=
|
|
41
|
+
agenta/client/backend/environments/client.py,sha256=Mq5EtUxUiKbMm33IF9OXt-eDAS9G_qOnvYmTLrTSemc,6248
|
|
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
|
-
agenta/client/backend/evaluators/client.py,sha256=
|
|
46
|
-
agenta/client/backend/
|
|
47
|
-
agenta/client/backend/
|
|
48
|
-
agenta/client/backend/
|
|
49
|
-
agenta/client/backend/
|
|
50
|
-
agenta/client/backend/
|
|
51
|
-
agenta/client/backend/
|
|
52
|
-
agenta/client/backend/
|
|
53
|
-
agenta/client/backend/
|
|
47
|
+
agenta/client/backend/evaluators/client.py,sha256=Opm0eMoQoQw2OUWivOY2b4jJSe7UAgoAV2A1Lo3IQws,41245
|
|
48
|
+
agenta/client/backend/human_evaluations/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
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
|
|
54
56
|
agenta/client/backend/scopes/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
55
57
|
agenta/client/backend/scopes/client.py,sha256=ZMHXj0GRS-xNOLAbnjo4SNpHjOvHa-xZn8-caC508Qk,3617
|
|
56
58
|
agenta/client/backend/testsets/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
57
|
-
agenta/client/backend/testsets/client.py,sha256=
|
|
58
|
-
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
|
|
59
62
|
agenta/client/backend/types/agenta_node_dto.py,sha256=DLZltD_ueVOfdiSZ1u2i3mu1C3kshxhcggQFFfybBdY,1747
|
|
60
63
|
agenta/client/backend/types/agenta_node_dto_nodes_value.py,sha256=ifG7dBYLphFoCgQ70ivvDXkTSlxX8w5x_9S-Glh8FlI,180
|
|
61
64
|
agenta/client/backend/types/agenta_nodes_response.py,sha256=1EoxaqN3ioELS_9rg5Bo6Y0PqqNdX2YNRCIsdO4Q-aQ,902
|
|
@@ -68,7 +71,7 @@ agenta/client/backend/types/aggregated_result_evaluator_config.py,sha256=GzU358r
|
|
|
68
71
|
agenta/client/backend/types/analytics_response.py,sha256=BDk2qyUHpiyE_EL32H9auokw57_ZmYy31cUztwJeoOw,694
|
|
69
72
|
agenta/client/backend/types/app.py,sha256=uBdmLWD9UAcOc6GZogVZp26IvAmXM20Uj0KCuGbmBP8,650
|
|
70
73
|
agenta/client/backend/types/app_variant_response.py,sha256=lFrl63ZTceAjMvLYQyIruRUF4ycQ4bB-OXuJtPqqQ6E,1094
|
|
71
|
-
agenta/client/backend/types/app_variant_revision.py,sha256=
|
|
74
|
+
agenta/client/backend/types/app_variant_revision.py,sha256=jC-JTUYXq2P5mhsnZZUX7zUbDH0Go2KpMnyqvREFhTM,717
|
|
72
75
|
agenta/client/backend/types/base_output.py,sha256=_cYuHdi6THNGEeDmvTb1yo82JlvV9-aCVLHcl4Q-UCY,597
|
|
73
76
|
agenta/client/backend/types/body_import_testset.py,sha256=7WmxuZe2Lt4CgdRhue6fHjzicWDfYFzN_6C3xkhjvXk,656
|
|
74
77
|
agenta/client/backend/types/bucket_dto.py,sha256=8uW9oIn4C0ke9PyiQdDT0y50s-jEAhGHsDlcKwAkDjc,705
|
|
@@ -78,8 +81,7 @@ agenta/client/backend/types/config_dto.py,sha256=x13NXqJd46LDN5w5ejj93HkeZay_nYW
|
|
|
78
81
|
agenta/client/backend/types/config_response_model.py,sha256=v14K15XdzX9dSYb3I6Q0BMneGaKKbrmXsJTk6xAkr20,1217
|
|
79
82
|
agenta/client/backend/types/correct_answer.py,sha256=khEHspf9nszpzhswc7rSruCrcmvVdHFm7ti8JRdpXyI,592
|
|
80
83
|
agenta/client/backend/types/create_app_output.py,sha256=0_avs1u3pIU14P5ut1WOUrravDwpg2GkSj8kYsAMK9Y,600
|
|
81
|
-
agenta/client/backend/types/
|
|
82
|
-
agenta/client/backend/types/create_trace_response.py,sha256=Pr1NM9nLHiPVzCP8m7VQ1NIb92fOhJTmMlEUK6FrykI,643
|
|
84
|
+
agenta/client/backend/types/delete_evaluation.py,sha256=XL7GGP1_84_hOXwBiKxSrb7wJBOSvjZPXF8gos6tR-k,605
|
|
83
85
|
agenta/client/backend/types/docker_env_vars.py,sha256=td2vhkHyYCwIC_TjlUu7hDuIXsfSJH2L7J_wGaNvw_c,600
|
|
84
86
|
agenta/client/backend/types/environment_output.py,sha256=L0KSiTXy4tFrrplV-YnyrsBzRB25E8QSEPTQC9BWBd0,933
|
|
85
87
|
agenta/client/backend/types/environment_output_extended.py,sha256=Sr5cVBZAKekddwQPOIsMmt9diaPTsOWpyzZzOFOFxLs,1043
|
|
@@ -90,7 +92,6 @@ agenta/client/backend/types/evaluation_scenario.py,sha256=AAEZS19leBYMF5ZTlXFCD5
|
|
|
90
92
|
agenta/client/backend/types/evaluation_scenario_input.py,sha256=KQYQIL6RXa2C2K6JNwZXXlW9nFYw-xqCJqY5qlp8mco,648
|
|
91
93
|
agenta/client/backend/types/evaluation_scenario_output.py,sha256=-XoVgjhJryWb3XrFuEQ0s0O3TV3BsHQltehYUnxThzA,704
|
|
92
94
|
agenta/client/backend/types/evaluation_scenario_result.py,sha256=wOs3-2ucAL6rizTzhHfzIPiXIWhFX9hQn44sMgqWUv8,647
|
|
93
|
-
agenta/client/backend/types/evaluation_scenario_score_update.py,sha256=xkyk7DKj99WkuWcOTOmTZ67G_GIaBVTrGUuy7Erfjec,597
|
|
94
95
|
agenta/client/backend/types/evaluation_status_enum.py,sha256=U0yabhF9EZqb0MU13MhLsuOa2wQmUQHGWDS0qawwvfE,370
|
|
95
96
|
agenta/client/backend/types/evaluation_type.py,sha256=FaI9rLp1QBUl5EE9xKtlxFhCDdcKGOx8NPcAWn3ct5o,186
|
|
96
97
|
agenta/client/backend/types/evaluator.py,sha256=Ye9m3jEg65hKsJlqWVDxNnlSNXCJAzxFX-KG7qGCPTM,843
|
|
@@ -105,19 +106,19 @@ agenta/client/backend/types/human_evaluation.py,sha256=jUNYGW6zp4UWB-SOY1oOB6FX_
|
|
|
105
106
|
agenta/client/backend/types/human_evaluation_scenario.py,sha256=GZFGdki4Rlfly7RUhNrWpS2x8N0fHelHdk55YtxY3l0,1127
|
|
106
107
|
agenta/client/backend/types/human_evaluation_scenario_input.py,sha256=4iT1sH_hM6gOFmVicewPONFOvz_cW-Dh6HoNU-tCC0E,620
|
|
107
108
|
agenta/client/backend/types/human_evaluation_scenario_output.py,sha256=yVEFImNXK3qSy83AL3X5qypUOgJ__fumLj1bNgXgPXk,624
|
|
108
|
-
agenta/client/backend/types/human_evaluation_scenario_update.py,sha256=eh33QTkJNZ5tdA-zPT5jeP_RAzhhtweNiduIscdB8bo,1122
|
|
109
|
-
agenta/client/backend/types/human_evaluation_update.py,sha256=PDtYJDYLEfYRaJuG6eqavgXpNhE-LDK81i9qNo7QD7s,686
|
|
110
109
|
agenta/client/backend/types/image.py,sha256=Q8mnZynlIHHwlu3XRarjJAzgfadl87qPJ-fqH2WqQBw,722
|
|
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
|
-
agenta/client/backend/types/new_human_evaluation.py,sha256=Rp_cu_ApObG7QBT-Hkvwer604gO6P3QnVwpIfLv0Q38,764
|
|
121
122
|
agenta/client/backend/types/new_testset.py,sha256=S8ENb_fu5CeyxTvjN5ojXuVoaauNKgfwE738svFhWNY,647
|
|
122
123
|
agenta/client/backend/types/node_dto.py,sha256=-4oC4IPdsndGEaRK2woQpcuZ33GdqsM-i4MGzh90I7w,659
|
|
123
124
|
agenta/client/backend/types/node_type.py,sha256=ofQdliqdM9dBYu8_A8Uc3ALco6UkJYvnD69bePqCA2o,330
|
|
@@ -130,28 +131,31 @@ agenta/client/backend/types/o_tel_span_kind.py,sha256=ePW3OWDXA1CaF0tJc06hCSN_Fe
|
|
|
130
131
|
agenta/client/backend/types/o_tel_spans_response.py,sha256=RcSDsp98H2qz53DPAZn7b2KrUZY85Kvda5cdRtGqnt8,700
|
|
131
132
|
agenta/client/backend/types/o_tel_status_code.py,sha256=RytIFSDMwvg3oV6BbBxE-8H5zQLwPlx2M_mw7FN8-ts,209
|
|
132
133
|
agenta/client/backend/types/organization.py,sha256=U8xVumZUcp5GnrRNJIHmaqibnxsVd9Hh6Oi0QqREuvI,900
|
|
134
|
+
agenta/client/backend/types/organization_membership_request.py,sha256=Q6y9CrIpMegfJckVeO_eI4LeiFkw_wyZSzxqhFPSzIM,731
|
|
133
135
|
agenta/client/backend/types/organization_output.py,sha256=dXkUHfNfp_ho220_sb7EX3YmE2AqYc4rlsYngV3ELBI,595
|
|
134
|
-
agenta/client/backend/types/
|
|
136
|
+
agenta/client/backend/types/organization_request.py,sha256=6NG6D-t9UEQ_mSBGQfHGnGVM9cobqwVNRliUl3KlMCE,625
|
|
135
137
|
agenta/client/backend/types/parent_dto.py,sha256=eh1bH2TJe9NLS2MdKZzIFvnwfKVBU_CNNPUkq1k2HnI,572
|
|
136
|
-
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
|
|
137
142
|
agenta/client/backend/types/projects_response.py,sha256=yQUrCf9vfw8zje1DaYj2p64AAYb2OcRPF3lmVTmqX98,888
|
|
138
143
|
agenta/client/backend/types/provider_key_dto.py,sha256=WkvgA8qv2ceLyLyyGSv9AFewem5fN6rB4Jmw9Grmpco,645
|
|
139
|
-
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
|
|
140
146
|
agenta/client/backend/types/reference_dto.py,sha256=VNLakAy13glLgEPIXH9o_3vcPflPkQJdo0o113lPURc,678
|
|
141
147
|
agenta/client/backend/types/reference_request_model.py,sha256=nhf4VUAfAJ-vf9fbOhcTrxk6uuqMFSoy0NhChY9Y0VQ,687
|
|
142
148
|
agenta/client/backend/types/result.py,sha256=6qD2kzmdzu8q4ywLtAyWLQEDHw-Cu5xN5GLCV-FI7_Y,700
|
|
149
|
+
agenta/client/backend/types/role.py,sha256=Vs9R8jAcGSQV9NAaBXwGp-adpJZhl4B9ZUwBzoUyMlU,277
|
|
143
150
|
agenta/client/backend/types/root_dto.py,sha256=F9OYWFLSCKSR-4z8BOV-eGmNkraVakxNPjsuwCUxYuY,570
|
|
144
|
-
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
|
|
145
153
|
agenta/client/backend/types/secret_dto.py,sha256=X3E0zfATI_Lb5Hov8zl2RS5g9SH5qzX2mf2UyvXbpwg,704
|
|
146
154
|
agenta/client/backend/types/secret_kind.py,sha256=FfxqfDrPrHFLpEVDwfDu4YEiT6xOXddn2e1omGdEPMM,124
|
|
147
|
-
agenta/client/backend/types/secret_response_dto.py,sha256=
|
|
155
|
+
agenta/client/backend/types/secret_response_dto.py,sha256=2T74ipNIgjxpqzwfLDOVMJViE5ve0vJFH8AHl8JaQWs,784
|
|
148
156
|
agenta/client/backend/types/simple_evaluation_output.py,sha256=XBm4IVY28brTIYrRQVUK7tFmxUUnqL6nKgVW5_E9PbM,731
|
|
149
|
-
agenta/client/backend/types/span.py,sha256=z3VDnH3vN-NWyP_QLtuJ16N8JVcHt0RUm5ziQ32R1G0,1278
|
|
150
|
-
agenta/client/backend/types/span_detail.py,sha256=cHedPJi4rBouIkQmjfMBoOx9W7TP9t09wlOoqgvIEWs,1410
|
|
151
157
|
agenta/client/backend/types/span_dto.py,sha256=EcGDT_hhCIXa0NEUucGi-TZLBWvwIyp9AKvA-fQTzOU,1863
|
|
152
158
|
agenta/client/backend/types/span_dto_nodes_value.py,sha256=R62GF6K9mOkUe_4EuLrmvNFg7Fn6eOIsWf4-0orgqa8,256
|
|
153
|
-
agenta/client/backend/types/span_status_code.py,sha256=h1D60dDCfmCI10d79QXPbgpYa4Q3n6LhEsCj9dBaxpU,162
|
|
154
|
-
agenta/client/backend/types/span_variant.py,sha256=MxGbLEYlkTge7mJcvwhhZDXdHUOOH436DEoZ9To_TAk,694
|
|
155
159
|
agenta/client/backend/types/status_code.py,sha256=rcpuLXRoWh08O4jxILr5yXV_mKWD896YCja-M0o8fHs,158
|
|
156
160
|
agenta/client/backend/types/status_dto.py,sha256=toKLiaY2FOWscyxkNIEDvjR0PDuZ4p_M92BDC-oeXE8,658
|
|
157
161
|
agenta/client/backend/types/template.py,sha256=O-2LZEElxLj4LbslKqFY8EzlkCzFSwfYMXkHcfh5XM4,651
|
|
@@ -159,27 +163,28 @@ agenta/client/backend/types/template_image_info.py,sha256=Bodh11Vi35CNGMmtQgLMjT
|
|
|
159
163
|
agenta/client/backend/types/test_set_output_response.py,sha256=RNOj6QtQww1pXgdpWUQTV_1Rozs9eUvNQxag_W4HmWg,767
|
|
160
164
|
agenta/client/backend/types/test_set_simple_response.py,sha256=dNftvPtUnNiGJKP9VzTFnjh3ffKxPocAG4sd45ZbHkg,618
|
|
161
165
|
agenta/client/backend/types/time_dto.py,sha256=OIR33tTFvTo2xSl5MQun4ZjPPPo_7h_Xc9RuKxMLWok,624
|
|
162
|
-
agenta/client/backend/types/trace_detail.py,sha256=jGDWzpGi4bJXLs3BXIJGksUGZm6RsqgXi0Q8nvwTtoY,1413
|
|
163
166
|
agenta/client/backend/types/tree_dto.py,sha256=24o0OHCXSFwvdk59LvL4CZY1ULn600GJiUZ3lVfWR6w,645
|
|
164
167
|
agenta/client/backend/types/tree_type.py,sha256=_maP5H8vwQZ9Ps7dWbuCVg8IgBuVUOMKItvZwPUZitI,120
|
|
165
168
|
agenta/client/backend/types/update_app_output.py,sha256=VOZS9MM_eNY2tVD7cnjiP-tUodAbuaRZed7KTONi1-E,600
|
|
166
169
|
agenta/client/backend/types/uri.py,sha256=tiY_sNZOWfG2INOhsthGx9QMnN_5Ibrqi68AkPHyDvw,567
|
|
170
|
+
agenta/client/backend/types/user_request.py,sha256=MPZwEiAFDdG3a5iL6Sc0TDX0ElbKkAePWvb0HsjWxNM,591
|
|
167
171
|
agenta/client/backend/types/validation_error.py,sha256=nNDCxS4lCvY-79Yfwcnth5a1RXm51EZ_tMCbxnmzbAQ,700
|
|
168
172
|
agenta/client/backend/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
169
173
|
agenta/client/backend/types/variant_action.py,sha256=m3SWsIZF9rPfFSh3ypDA5vawKiTHwI_7_SfhyQO3OoU,645
|
|
170
174
|
agenta/client/backend/types/variant_action_enum.py,sha256=KZzhy-BKA9m8zwZlmoESywDQIn-VGyI2qCRr9-tqaks,158
|
|
171
|
-
agenta/client/backend/types/with_pagination.py,sha256=NseT9aXCB-cqkDDjlxEkzb1cYqbsDQEaO6tMitToR0g,798
|
|
172
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
|
|
173
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
|
|
174
179
|
agenta/client/backend/types/workspace_response.py,sha256=n1884dwY4C9Gm-JCyprnLfOxAVg4j9SsXL7hQdwsUl8,924
|
|
175
180
|
agenta/client/backend/types/workspace_role.py,sha256=k-ltfq7aAWGg85tTPIf8HpFMMf4gu02_X8R2fFPmB7U,286
|
|
176
181
|
agenta/client/backend/types/workspace_role_response.py,sha256=6hlRcsMmpf6Q0ejLzRKJiZo_9rygazcbJfpPq2jQZVw,693
|
|
177
182
|
agenta/client/backend/variants/__init__.py,sha256=BMR4SvsrqXC9FU8nPVzY8M9xGrBEhEGrmbgvy3iM1aE,171
|
|
178
|
-
agenta/client/backend/variants/client.py,sha256=
|
|
183
|
+
agenta/client/backend/variants/client.py,sha256=8pBJ0EDvlafgW1dbrwyGKKBTfHZrzCHeiNRmEMQQWxY,97959
|
|
179
184
|
agenta/client/backend/variants/types/__init__.py,sha256=TrRUAyPsJ1bKg2gfW0d_S1rEu6eaYnHmr2g_URTuwPU,216
|
|
180
185
|
agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py,sha256=nbcakmo3eZpWmyX_DhS6F4jyhfV2t5zN-zOgDtM2rKQ,247
|
|
181
186
|
agenta/client/backend/vault/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
182
|
-
agenta/client/backend/vault/client.py,sha256=
|
|
187
|
+
agenta/client/backend/vault/client.py,sha256=eqqET6gmxqE2HK906beDb81ynFocF4IjD74GbxoeA5U,21924
|
|
183
188
|
agenta/client/client.py,sha256=4knrINpRsKDHn--_IhFTZY4jjZNxDNxiCiVbRIads_0,19622
|
|
184
189
|
agenta/client/exceptions.py,sha256=cxLjjKvZKlUgBxt4Vn9J_SsezJPPNHvrZxnoq-D6zmw,94
|
|
185
190
|
agenta/config.py,sha256=0VrTqduB4g8Mt_Ll7ffFcEjKF5qjTUIxmUtTPW2ygWw,653
|
|
@@ -191,47 +196,48 @@ agenta/docker/docker-assets/entrypoint.sh,sha256=29XK8VQjQsx4hN2j-4JDy-6kQb5y4LC
|
|
|
191
196
|
agenta/docker/docker-assets/lambda_function.py,sha256=h4UZSSfqwpfsCgERv6frqwm_4JrYu9rLz3I-LxCfeEg,83
|
|
192
197
|
agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6FcH2QfA,251
|
|
193
198
|
agenta/docker/docker_utils.py,sha256=kO1q2_IR0fEAo4M-2Pt_v-zC7GxxnkLogjKFhU869Ps,3555
|
|
194
|
-
agenta/sdk/__init__.py,sha256=
|
|
195
|
-
agenta/sdk/agenta_init.py,sha256=
|
|
196
|
-
agenta/sdk/assets.py,sha256=
|
|
199
|
+
agenta/sdk/__init__.py,sha256=WFYRfWh6IoYPSzMG2WF2Xz5amLQtzfWVscT0Q9OLpFY,2109
|
|
200
|
+
agenta/sdk/agenta_init.py,sha256=n0vGszxTRXHMbsoTtl1y3x6Veho6SZkI14PXX49fLE0,8019
|
|
201
|
+
agenta/sdk/assets.py,sha256=jS78dd1E139rp7_xscKIBG0s3BW2S1x_p_VqkfdylVU,3056
|
|
197
202
|
agenta/sdk/client.py,sha256=trKyBOYFZRk0v5Eptxvh87yPf50Y9CqY6Qgv4Fy-VH4,2142
|
|
198
203
|
agenta/sdk/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
204
|
agenta/sdk/context/exporting.py,sha256=16X8fgMhl58gehSlqANX97FiKxx4TkGiG4d2B0-7ZX0,516
|
|
200
205
|
agenta/sdk/context/routing.py,sha256=FEsjw8EttI1SMyUo96ptcUsvHJnhoKwdr1szlkxxJNU,598
|
|
201
206
|
agenta/sdk/context/tracing.py,sha256=zp7T_wLVkR-V1c0k7UAN69rwH9VV7MhoZD_IdNu-_RE,649
|
|
202
207
|
agenta/sdk/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
-
agenta/sdk/decorators/routing.py,sha256=
|
|
204
|
-
agenta/sdk/decorators/tracing.py,sha256=
|
|
208
|
+
agenta/sdk/decorators/routing.py,sha256=HjHFAnmJE-hMKb7wojeLw_bksDuOGDW4Pj0E5IxPHFc,24828
|
|
209
|
+
agenta/sdk/decorators/tracing.py,sha256=Wf7KWR1NknXlQEdB2sjMFrcSI-tSSvO9XubN-Ro5tkU,9216
|
|
205
210
|
agenta/sdk/litellm/__init__.py,sha256=Bpz1gfHQc0MN1yolWcjifLWznv6GjHggvRGQSpxpihM,37
|
|
206
|
-
agenta/sdk/litellm/litellm.py,sha256=
|
|
207
|
-
agenta/sdk/litellm/mockllm.py,sha256=
|
|
208
|
-
agenta/sdk/litellm/mocks/__init__.py,sha256=
|
|
211
|
+
agenta/sdk/litellm/litellm.py,sha256=Xx_YJu05BYkmIe6uObjS6DwzjgwfNytGWf807Zh0vcU,10153
|
|
212
|
+
agenta/sdk/litellm/mockllm.py,sha256=8V6dqdv8eA4P-VoXIwHNYlIjHG189P14POSfSfluVw0,678
|
|
213
|
+
agenta/sdk/litellm/mocks/__init__.py,sha256=c-afSm0YkiHyyaLegvtFs6WuWZTl2Q7Fq_iUoxqBbQc,616
|
|
209
214
|
agenta/sdk/managers/__init__.py,sha256=SN-LRwG0pRRDV3u2Q4JiiSTigN3-mYpzGNM35RzT4mc,238
|
|
215
|
+
agenta/sdk/managers/apps.py,sha256=RSE5ER-a0IHo7iZrcQLshQZMemPTfAVsBfR8H1J-ryQ,1713
|
|
210
216
|
agenta/sdk/managers/config.py,sha256=8-TJn56SssNjfxCY7NhDwqL4in5gtPeMrsvyEf-W_u4,7421
|
|
211
217
|
agenta/sdk/managers/deployment.py,sha256=SEokjZeh6n7HRKZ92Y0WncdG49hIFx-Z3B3HAl2kmUg,1174
|
|
212
218
|
agenta/sdk/managers/secrets.py,sha256=HAXswBOTbF_LydoNGnQgHr-KVqdFUOvLujUg6S_5taM,878
|
|
213
|
-
agenta/sdk/managers/shared.py,sha256=
|
|
219
|
+
agenta/sdk/managers/shared.py,sha256=vUhO2thObHxCIowyiM_KFsxPY2q6Rv_lHr2Up8WvFjg,21523
|
|
214
220
|
agenta/sdk/managers/variant.py,sha256=A5ga3mq3b0weUTXa9HO72MGaspthGcu1uK9K5OnP738,4172
|
|
215
221
|
agenta/sdk/managers/vault.py,sha256=054ce9X_xKa2M4NtQWz-GugO6q_pYVWCP3IxbAJJcRw,337
|
|
216
222
|
agenta/sdk/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
|
-
agenta/sdk/middleware/auth.py,sha256=
|
|
223
|
+
agenta/sdk/middleware/auth.py,sha256=T7-TEInVXclnM84SLsvXQlQAgL1wfyuGfjMsjDjEeL8,10859
|
|
218
224
|
agenta/sdk/middleware/cache.py,sha256=-_e3_6f4cPfpuUpGRK_ZQvUx_54ez68db4SnBwfuESk,1078
|
|
219
|
-
agenta/sdk/middleware/config.py,sha256=
|
|
225
|
+
agenta/sdk/middleware/config.py,sha256=Mckj-xwIWj06fpMLrz43Ookn8Q7MuvqkF1mDmG17l20,7614
|
|
220
226
|
agenta/sdk/middleware/cors.py,sha256=q3r7lGkrIdMcT_vuhsburMcjG7pyl7w0ycxrIrGJ2e8,921
|
|
221
|
-
agenta/sdk/middleware/inline.py,sha256=
|
|
222
|
-
agenta/sdk/middleware/mock.py,sha256=
|
|
223
|
-
agenta/sdk/middleware/otel.py,sha256=
|
|
224
|
-
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
|
|
225
231
|
agenta/sdk/router.py,sha256=mOguvtOwl2wmyAgOuWTsf98pQwpNiUILKIo67W_hR3A,119
|
|
226
232
|
agenta/sdk/tracing/__init__.py,sha256=rQNe5-zT5Kt7_CDhq-lnUIi1EYTBVzVf_MbfcIxVD98,41
|
|
227
233
|
agenta/sdk/tracing/attributes.py,sha256=zh8JQZSeYCLBeIRSopKJx6QQ-WEgw08Cr64DS_WOcT8,3833
|
|
228
234
|
agenta/sdk/tracing/conventions.py,sha256=JBtznBXZ3aRkGKkLl7cPwdMNh3w1G-H2Ta2YrAxbr38,950
|
|
229
|
-
agenta/sdk/tracing/exporters.py,sha256=
|
|
230
|
-
agenta/sdk/tracing/inline.py,sha256=
|
|
235
|
+
agenta/sdk/tracing/exporters.py,sha256=PuSbamuLa4e9eGBM6tp7Smh5R41Jz07VBoBtMnkbtz8,2687
|
|
236
|
+
agenta/sdk/tracing/inline.py,sha256=BQecJkZDlR85aodfvye-LuDhouee3RjLuUl7GMpfsSw,31282
|
|
231
237
|
agenta/sdk/tracing/processors.py,sha256=d7MvJ_DRAP0RAlp8V8XrrY-m8pJ03nLxKoq15RnjedA,3334
|
|
232
238
|
agenta/sdk/tracing/spans.py,sha256=nqUOjjirBxB8Eacv8Qj4Ra_6rknGi3lbJdNyKmk5ODQ,3707
|
|
233
239
|
agenta/sdk/tracing/tracing.py,sha256=iZCIggUkR5f2zVcq0o7T8-to7pcFO349gUEBYXnBMzg,6888
|
|
234
|
-
agenta/sdk/types.py,sha256=
|
|
240
|
+
agenta/sdk/types.py,sha256=HvFok4lEFxWow6WT71OrJ23WhTsj_FqqMyzlKByAqYk,19120
|
|
235
241
|
agenta/sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
242
|
agenta/sdk/utils/constants.py,sha256=zW3R4rjXOo2L5lz6q84l_zYuOM9u4mpPRHw_B1Dr_hI,67
|
|
237
243
|
agenta/sdk/utils/costs.py,sha256=i8C7ud__pThLS55XkN4YW8czXtGeXr2mx7jjcOFeiXg,5955
|
|
@@ -257,7 +263,7 @@ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR
|
|
|
257
263
|
agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
|
|
258
264
|
agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
|
|
259
265
|
agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
|
|
260
|
-
agenta-0.
|
|
261
|
-
agenta-0.
|
|
262
|
-
agenta-0.
|
|
263
|
-
agenta-0.
|
|
266
|
+
agenta-0.33.0.dist-info/METADATA,sha256=drxwT6gnetcaKq9_CZLY2xhUQ3alaIIdIxhhScMOY44,30171
|
|
267
|
+
agenta-0.33.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
268
|
+
agenta-0.33.0.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
|
|
269
|
+
agenta-0.33.0.dist-info/RECORD,,
|