agenta 0.13.0a0__py3-none-any.whl → 0.13.0a1__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.

Files changed (97) hide show
  1. agenta/__init__.py +1 -0
  2. agenta/client/backend/client.py +169 -50
  3. agenta/client/backend/core/api_error.py +3 -1
  4. agenta/client/backend/core/datetime_utils.py +3 -1
  5. agenta/client/backend/core/jsonable_encoder.py +9 -3
  6. agenta/client/backend/resources/__init__.py +12 -1
  7. agenta/client/backend/resources/apps/__init__.py +0 -1
  8. agenta/client/backend/resources/apps/client.py +88 -26
  9. agenta/client/backend/resources/bases/__init__.py +0 -1
  10. agenta/client/backend/resources/bases/client.py +8 -2
  11. agenta/client/backend/resources/configs/__init__.py +0 -1
  12. agenta/client/backend/resources/configs/client.py +58 -14
  13. agenta/client/backend/resources/containers/client.py +46 -14
  14. agenta/client/backend/resources/environments/__init__.py +0 -1
  15. agenta/client/backend/resources/environments/client.py +18 -6
  16. agenta/client/backend/resources/evaluations/__init__.py +0 -1
  17. agenta/client/backend/resources/evaluations/client.py +86 -26
  18. agenta/client/backend/resources/evaluators/__init__.py +0 -1
  19. agenta/client/backend/resources/evaluators/client.py +57 -17
  20. agenta/client/backend/resources/observability/__init__.py +0 -1
  21. agenta/client/backend/resources/observability/client.py +100 -30
  22. agenta/client/backend/resources/testsets/__init__.py +0 -1
  23. agenta/client/backend/resources/testsets/client.py +56 -16
  24. agenta/client/backend/resources/variants/client.py +92 -26
  25. agenta/client/backend/resources/variants/types/__init__.py +3 -1
  26. agenta/client/backend/types/aggregated_result.py +10 -2
  27. agenta/client/backend/types/aggregated_result_evaluator_config.py +3 -1
  28. agenta/client/backend/types/app.py +10 -2
  29. agenta/client/backend/types/app_variant_response.py +10 -2
  30. agenta/client/backend/types/app_variant_revision.py +10 -2
  31. agenta/client/backend/types/base_output.py +10 -2
  32. agenta/client/backend/types/body_import_testset.py +10 -2
  33. agenta/client/backend/types/config_db.py +10 -2
  34. agenta/client/backend/types/create_app_output.py +10 -2
  35. agenta/client/backend/types/create_span.py +10 -2
  36. agenta/client/backend/types/create_trace_response.py +10 -2
  37. agenta/client/backend/types/docker_env_vars.py +10 -2
  38. agenta/client/backend/types/environment_output.py +10 -2
  39. agenta/client/backend/types/environment_output_extended.py +10 -2
  40. agenta/client/backend/types/environment_revision.py +10 -2
  41. agenta/client/backend/types/error.py +10 -2
  42. agenta/client/backend/types/evaluation.py +10 -2
  43. agenta/client/backend/types/evaluation_scenario.py +10 -2
  44. agenta/client/backend/types/evaluation_scenario_input.py +10 -2
  45. agenta/client/backend/types/evaluation_scenario_output.py +10 -2
  46. agenta/client/backend/types/evaluation_scenario_result.py +10 -2
  47. agenta/client/backend/types/evaluation_scenario_score_update.py +10 -2
  48. agenta/client/backend/types/evaluation_type.py +3 -1
  49. agenta/client/backend/types/evaluation_webhook.py +10 -2
  50. agenta/client/backend/types/evaluator.py +10 -2
  51. agenta/client/backend/types/evaluator_config.py +10 -2
  52. agenta/client/backend/types/feedback.py +10 -2
  53. agenta/client/backend/types/get_config_response.py +10 -2
  54. agenta/client/backend/types/http_validation_error.py +10 -2
  55. agenta/client/backend/types/human_evaluation.py +10 -2
  56. agenta/client/backend/types/human_evaluation_scenario.py +10 -2
  57. agenta/client/backend/types/human_evaluation_scenario_input.py +10 -2
  58. agenta/client/backend/types/human_evaluation_scenario_output.py +10 -2
  59. agenta/client/backend/types/human_evaluation_scenario_update.py +10 -2
  60. agenta/client/backend/types/human_evaluation_update.py +10 -2
  61. agenta/client/backend/types/image.py +10 -2
  62. agenta/client/backend/types/invite_request.py +10 -2
  63. agenta/client/backend/types/list_api_keys_response.py +10 -2
  64. agenta/client/backend/types/llm_run_rate_limit.py +10 -2
  65. agenta/client/backend/types/llm_tokens.py +10 -2
  66. agenta/client/backend/types/new_human_evaluation.py +10 -2
  67. agenta/client/backend/types/new_testset.py +10 -2
  68. agenta/client/backend/types/organization.py +10 -2
  69. agenta/client/backend/types/organization_output.py +10 -2
  70. agenta/client/backend/types/result.py +10 -2
  71. agenta/client/backend/types/simple_evaluation_output.py +10 -2
  72. agenta/client/backend/types/span.py +10 -2
  73. agenta/client/backend/types/span_detail.py +10 -2
  74. agenta/client/backend/types/span_variant.py +10 -2
  75. agenta/client/backend/types/template.py +10 -2
  76. agenta/client/backend/types/template_image_info.py +10 -2
  77. agenta/client/backend/types/test_set_output_response.py +10 -2
  78. agenta/client/backend/types/test_set_simple_response.py +10 -2
  79. agenta/client/backend/types/trace_detail.py +10 -2
  80. agenta/client/backend/types/uri.py +10 -2
  81. agenta/client/backend/types/validation_error.py +10 -2
  82. agenta/client/backend/types/variant_action.py +10 -2
  83. agenta/client/backend/types/variant_action_enum.py +3 -1
  84. agenta/client/backend/types/with_pagination.py +10 -2
  85. agenta/client/backend/types/workspace_member_response.py +10 -2
  86. agenta/client/backend/types/workspace_permission.py +10 -2
  87. agenta/client/backend/types/workspace_response.py +10 -2
  88. agenta/client/backend/types/workspace_role_response.py +10 -2
  89. agenta/sdk/__init__.py +1 -0
  90. agenta/sdk/agenta_decorator.py +11 -3
  91. agenta/sdk/tracing/llm_tracing.py +31 -18
  92. agenta/sdk/types.py +38 -0
  93. {agenta-0.13.0a0.dist-info → agenta-0.13.0a1.dist-info}/METADATA +46 -96
  94. agenta-0.13.0a1.dist-info/RECORD +161 -0
  95. agenta-0.13.0a0.dist-info/RECORD +0 -161
  96. {agenta-0.13.0a0.dist-info → agenta-0.13.0a1.dist-info}/WHEEL +0 -0
  97. {agenta-0.13.0a0.dist-info → agenta-0.13.0a1.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agenta
3
- Version: 0.13.0a0
3
+ Version: 0.13.0a1
4
4
  Summary: The SDK for agenta is an open-source LLMOps platform.
5
5
  Home-page: https://agenta.ai
6
6
  Keywords: LLMOps,LLM,evaluation,prompt engineering
@@ -36,8 +36,8 @@ Description-Content-Type: text/markdown
36
36
  <a href="https://agenta.ai/">
37
37
  <div align="center" >
38
38
  <picture >
39
- <source media="(prefers-color-scheme: dark)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/a356f263-6f5e-43df-8b58-4c183b8d8878" >
40
- <source media="(prefers-color-scheme: light)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/68e055d4-d7b8-4943-992f-761558c64253" >
39
+ <source width="500" media="(prefers-color-scheme: dark)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/cdddf5ad-2352-4920-b1d9-ae7f8d9d7735" >
40
+ <source width="500" media="(prefers-color-scheme: light)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/ab75cbac-b807-496f-aab3-57463a33f726" >
41
41
  <img alt="Shows the logo of agenta" src="https://github.com/Agenta-AI/agenta/assets/4510758/68e055d4-d7b8-4943-992f-761558c64253" >
42
42
  </picture>
43
43
  </div>
@@ -48,8 +48,8 @@ Description-Content-Type: text/markdown
48
48
  <a href="https://docs.agenta.ai/">Documentation</a>
49
49
  </h4>
50
50
  <div align="center">
51
- <strong>Quickly iterate, debug, and evaluate your LLM apps</strong><br />
52
- The open-source LLMOps platform for prompt-engineering, evaluation, human feedback, and deployment of complex LLM apps.
51
+ <strong> <h2> Collaborate on prompts, evaluate, and deploy LLM applications with confidence </h2></strong>
52
+ The open-source LLM developer platform for prompt-engineering, evaluation, human feedback, and deployment of complex LLM apps.
53
53
  </div>
54
54
  </br>
55
55
  <p align="center">
@@ -68,7 +68,6 @@ Description-Content-Type: text/markdown
68
68
  <a href="https://pypi.org/project/agenta/">
69
69
  <img src="https://img.shields.io/pypi/dm/agenta" alt="PyPI - Downloads">
70
70
  </a>
71
-
72
71
  </br>
73
72
  </p>
74
73
 
@@ -90,7 +89,7 @@ Description-Content-Type: text/markdown
90
89
 
91
90
  <a href="https://cloud.agenta.ai">
92
91
  <picture>
93
- <img src="https://github.com/Agenta-AI/agenta/assets/4510758/a3024fac-2945-4208-ae12-4cc51ecfc970" />
92
+ <img src="https://github.com/Agenta-AI/agenta/assets/4510758/d622f268-c295-42d4-a43c-548b611ff6f2" />
94
93
  </picture>
95
94
  </a>
96
95
 
@@ -100,8 +99,8 @@ Description-Content-Type: text/markdown
100
99
  <br />
101
100
  <div align="center" >
102
101
  <picture >
103
- <source media="(prefers-color-scheme: dark)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/cf6d4713-4558-4c6c-9e1b-ee4eab261f4c" >
104
- <source media="(prefers-color-scheme: light)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/ae9cf11f-8ef9-4b67-98c7-4a40341fa87a" >
102
+ <source width="800" media="(prefers-color-scheme: dark)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/cf6d4713-4558-4c6c-9e1b-ee4eab261f4c" >
103
+ <source width="800" media="(prefers-color-scheme: light)" srcset="https://github.com/Agenta-AI/agenta/assets/4510758/ae9cf11f-8ef9-4b67-98c7-4a40341fa87a" >
105
104
  <img alt="Mockup agenta" src="https://github.com/Agenta-AI/agenta/assets/4510758/ae9cf11f-8ef9-4b67-98c7-4a40341fa87a" >
106
105
  </picture>
107
106
  </div>
@@ -113,126 +112,75 @@ Description-Content-Type: text/markdown
113
112
  ---
114
113
 
115
114
  <h3 align="center">
116
- <a href="#ℹ️-about"><b>About</b></a> &bull;
117
115
  <a href="#quick-start"><b>Quick Start</b></a> &bull;
118
- <a href="https://docs.agenta.ai/installation"><b>Installation</b></a> &bull;
119
116
  <a href="#features"><b>Features</b></a> &bull;
120
117
  <a href="https://docs.agenta.ai"><b>Documentation</b></a> &bull;
121
118
  <a href="#enterprise-support"><b>Enterprise</b></a> &bull;
122
- <a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA"><b>Community</b></a> &bull;
119
+ <a href="https://github.com/orgs/Agenta-AI/projects/13"><b>Roadmap</b></a> &bull;
120
+ <a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA"><b>Join Our Slack</b></a> &bull;
123
121
  <a href="#contributing"><b>Contributing</b></a>
124
122
  </h3>
125
123
 
126
124
  ---
127
125
 
128
- # ℹ️ About
126
+ # ⭐️ Why Agenta?
127
+
128
+ Agenta is an end-to-end LLM developer platform. It provides the tools for **prompt engineering and management**, ⚖️ **evaluation**, **human annotation**, and :rocket: **deployment**. All without imposing any restrictions on your choice of framework, library, or model.
129
+
130
+ Agenta allows developers and product teams to collaborate in building production-grade LLM-powered applications in less time.
131
+
132
+ ### With Agenta, you can:
129
133
 
130
- Agenta is an end-to-end LLMOps platform. It provides the tools for **prompt engineering and management**, ⚖️ **evaluation**, and :rocket: **deployment**. All without imposing any restrictions on your choice of framework, library, or model.
134
+ - [🧪 **Experiment** and **compare** prompts](https://docs.agenta.ai/basic_guides/prompt_engineering) on [any LLM workflow](https://docs.agenta.ai/advanced_guides/custom_applications) (chain-of-prompts, Retrieval Augmented Generation (RAG), LLM agents...)
135
+ - ✍️ Collect and [**annotate golden test sets**](https://docs.agenta.ai/basic_guides/test_sets) for evaluation
136
+ - 📈 [**Evaluate** your application](https://docs.agenta.ai/basic_guides/automatic_evaluation) with pre-existing or [**custom evaluators**](https://docs.agenta.ai/advanced_guides/using_custom_evaluators)
137
+ - [🔍 **Annotate** and **A/B test**](https://docs.agenta.aibasic_guides/human_evaluation) your applications with **human feedback**
138
+ - [🤝 **Collaborate with product teams**](https://docs.agenta.ai/basic_guides/team_management) for prompt engineering and evaluation
139
+ - [🚀 **Deploy your application**](https://docs.agenta.ai/basic_guides/deployment) in one-click in the UI, through CLI, or through github workflows.
131
140
 
132
- Agenta allows developers and product teams to collaborate and build robust AI applications in less time.
141
+ ### Works with any LLM app workflow
133
142
 
134
- ## 🔨 How does it work?
143
+ Agenta enables prompt engineering and evaluation on any LLM app architecture:
144
+ - Chain of prompts
145
+ - RAG
146
+ - Agents
147
+ - ...
135
148
 
136
- | Using an LLM App Template (For Non-Technical Users) | Starting from Code |
137
- | ------------- | ------------- |
138
- |1. [Create an application using a pre-built template from our UI](https://cloud.agenta.ai?utm_source=github&utm_medium=readme&utm_campaign=github)<br />2. Access a playground where you can test and compare different prompts and configurations side-by-side.<br /> 3. Systematically evaluate your application using pre-built or custom evaluators.<br /> 4. Deploy the application to production with one click. |1. [Add a few lines to any LLM application code to automatically create a playground for it](https://docs.agenta.ai/developer_guides/tutorials/first-app-with-langchain) <br />2. Experiment with prompts and configurations, and compare them side-by-side in the playground. <br />3. Systematically evaluate your application using pre-built or custom evaluators. <br />4. Deploy the application to production with one click. |
149
+ It works with any framework such as [Langchain](https://langchain.com), [LlamaIndex](https://www.llamaindex.ai/) and any LLM provider (openAI, Cohere, Mistral).
139
150
 
140
- <br /><br />
151
+ [Jump here to see how to use your own custom application with agenta](/advanced_guides/custom_applications)
141
152
 
142
153
  # Quick Start
143
154
 
144
- ### [Try the cloud version](https://cloud.agenta.ai?utm_source=github&utm_medium=readme&utm_campaign=github)
145
- ### [Create your first application in one-minute](https://docs.agenta.ai/getting_started/getting-started-ui)
146
- ### [Create an application using Langchain](https://docs.agenta.ai/developer_guides/tutorials/first-app-with-langchain)
155
+ ### [Get started for free](https://cloud.agenta.ai?utm_source=github&utm_medium=readme&utm_campaign=github)
156
+ ### [Explore the Docs](https://docs.agenta.ai)
157
+ ### [Create your first application in one-minute](https://docs.agenta.ai/quickstart/getting-started-ui)
158
+ ### [Create an application using Langchain](https://docs.agenta.ai/tutorials/first-app-with-langchain)
147
159
  ### [Self-host agenta](https://docs.agenta.ai/self-host/host-locally)
148
- ### [Read the Documentation](https://docs.agenta.ai)
149
160
  ### [Check the Cookbook](https://docs.agenta.ai/cookbook)
150
161
 
151
162
  # Features
152
163
 
153
- <h3>Playground 🪄 <br/></h3>
154
- With just a few lines of code, define the parameters and prompts you wish to experiment with. You and your team can quickly experiment and test new variants on the web UI. <br/>
155
-
156
- https://github.com/Agenta-AI/agenta/assets/4510758/8b736d2b-7c61-414c-b534-d95efc69134c
157
-
158
- <h3>Version Evaluation 📊 <br/></h3>
159
- Define test sets, then evaluate manually or programmatically your different variants.<br/>
160
-
161
- ![](https://github.com/Agenta-AI/agenta/assets/4510758/b1de455d-7e0a-48d6-8497-39ba641600f0)
162
-
163
-
164
- <h3>API Deployment 🚀<br/></h3>
165
- When you are ready, deploy your LLM applications as APIs in one click.<br/>
166
-
167
- ![](https://github.com/Agenta-AI/agenta/blob/main/docs/images/endpoint.gif)
168
-
169
- ## Why choose Agenta for building LLM-apps?
170
-
171
- - 🔨 **Build quickly**: You need to iterate many times on different architectures and prompts to bring apps to production. We streamline this process and allow you to do this in days instead of weeks.
172
- - 🏗️ **Build robust apps and reduce hallucination**: We provide you with the tools to systematically and easily evaluate your application to make sure you only serve robust apps to production.
173
- - 👨‍💻 **Developer-centric**: We cater to complex LLM-apps and pipelines that require more than one simple prompt. We allow you to experiment and iterate on apps that have complex integration, business logic, and many prompts.
174
- - 🌐 **Solution-Agnostic**: You have the freedom to use any libraries and models, be it Langchain, llma_index, or a custom-written alternative.
175
- - 🔒 **Privacy-First**: We respect your privacy and do not proxy your data through third-party services. The platform and the data are hosted on your infrastructure.
176
-
177
- ## How Agenta works:
178
-
179
- **1. Write your LLM-app code**
180
-
181
- Write the code using any framework, library, or model you want. Add the `agenta.post` decorator and put the inputs and parameters in the function call just like in this example:
182
-
183
- _Example simple application that generates baby names:_
184
-
185
- ```python
186
- import agenta as ag
187
- from langchain.chains import LLMChain
188
- from langchain.llms import OpenAI
189
- from langchain.prompts import PromptTemplate
190
-
191
- default_prompt = "Give me five cool names for a baby from {country} with this gender {gender}!!!!"
192
- ag.init()
193
- ag.config(prompt_template=ag.TextParam(default_prompt),
194
- temperature=ag.FloatParam(0.9))
195
-
196
- @ag.entrypoint
197
- def generate(
198
- country: str,
199
- gender: str,
200
- ) -> str:
201
- llm = OpenAI(temperature=ag.config.temperature)
202
- prompt = PromptTemplate(
203
- input_variables=["country", "gender"],
204
- template=ag.config.prompt_template,
205
- )
206
- chain = LLMChain(llm=llm, prompt=prompt)
207
- output = chain.run(country=country, gender=gender)
208
-
209
- return output
210
- ```
211
-
212
- **2.Deploy your app using the Agenta CLI**
213
-
214
- <img width="650" alt="Screenshot 2023-06-19 at 15 58 34" src="https://github.com/Agenta-AI/agenta/assets/4510758/eede3e78-0fe1-42a0-ad4e-d880ddb10bf0">
215
-
216
- **3. Go to agenta at http://localhost**
217
-
218
- Now your team can 🔄 iterate, 🧪 experiment, and ⚖️ evaluate different versions of your app (with your code!) in the web platform.</summary>
219
- <br/>
220
-
221
- <img width="900" alt="Screenshot 2023-06-25 at 21 08 53" src="https://github.com/Agenta-AI/agenta/assets/57623556/7e07a988-a36a-4fb5-99dd-9cc13a678434">
222
164
 
165
+ | Playground | Evaluation |
166
+ | ------- | ------- |
167
+ | Compare and version prompts for any LLM app, from single prompt to agents. <br/> <video src="https://github.com/Agenta-AI/agenta/assets/4510758/8b736d2b-7c61-414c-b534-d95efc69134c" controls="controls" style="max-width:100%;"> | Define test sets, then evaluate manually or programmatically your different variants.<br/> <video src="https://github.com/Agenta-AI/agenta/assets/4510758/8c6997c6-da87-46ad-a81f-e15e277263d2" controls="controls" style="max-width:100%;">|
168
+ | Human annotation | Deployment |
169
+ | Use Human annotator to A/B test and score your LLM apps. <br/> <img width="750" alt="Screenshot 2024-01-28 at 12 57 46" src="https://github.com/Agenta-AI/agenta/assets/4510758/bf62a697-bf19-4ba9-850e-742fbfb75424"> | When you are ready, deploy your LLM applications as APIs in one click.<br/>![](https://github.com/Agenta-AI/agenta/blob/main/docs/images/endpoint.gif) |
223
170
 
224
171
  # Enterprise Support
225
172
  Contact us here for enterprise support and early access to agenta self-managed enterprise with Kubernetes support. <br/><br/>
226
173
  <a href="https://cal.com/mahmoud-mabrouk-ogzgey/demo"><img src="https://cal.com/book-with-cal-dark.svg" alt="Book us"></a>
227
174
 
228
175
  # Disabling Anonymized Tracking
176
+ 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.
229
177
 
230
- To disable anonymized telemetry, set the following environment variable:
178
+ To disable anonymized telemetry, follow these steps:
231
179
 
232
180
  - For web: Set `TELEMETRY_TRACKING_ENABLED` to `false` in your `agenta-web/.env` file.
233
181
  - For CLI: Set `telemetry_tracking_enabled` to `false` in your `~/.agenta/config.toml` file.
234
182
 
235
- After making this change, restart agenta compose.
183
+ After making this change, restart Agenta Compose.
236
184
 
237
185
  # Contributing
238
186
 
@@ -245,7 +193,7 @@ Check out our [Contributing Guide](https://docs.agenta.ai/contributing/getting-s
245
193
  ## Contributors ✨
246
194
 
247
195
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
248
- [![All Contributors](https://img.shields.io/badge/all_contributors-39-orange.svg?style=flat-square)](#contributors-)
196
+ [![All Contributors](https://img.shields.io/badge/all_contributors-41-orange.svg?style=flat-square)](#contributors-)
249
197
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
250
198
 
251
199
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -305,6 +253,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
305
253
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/brockWith"><img src="https://avatars.githubusercontent.com/u/105627491?v=4?s=100" width="100px;" alt="brockWith"/><br /><sub><b>brockWith</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=brockWith" title="Code">💻</a></td>
306
254
  <td align="center" valign="top" width="14.28%"><a href="http://denniszelada.wordpress.com/"><img src="https://avatars.githubusercontent.com/u/219311?v=4?s=100" width="100px;" alt="Dennis Zelada"/><br /><sub><b>Dennis Zelada</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=denniszelada" title="Code">💻</a></td>
307
255
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/romainrbr"><img src="https://avatars.githubusercontent.com/u/10381609?v=4?s=100" width="100px;" alt="Romain Brucker"/><br /><sub><b>Romain Brucker</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=romainrbr" title="Code">💻</a></td>
256
+ <td align="center" valign="top" width="14.28%"><a href="http://heonheo.com"><img src="https://avatars.githubusercontent.com/u/76820291?v=4?s=100" width="100px;" alt="Heon Heo"/><br /><sub><b>Heon Heo</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=HeonHeo23" title="Code">💻</a></td>
257
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/Drewski2222"><img src="https://avatars.githubusercontent.com/u/39228951?v=4?s=100" width="100px;" alt="Drew Reisner"/><br /><sub><b>Drew Reisner</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=Drewski2222" title="Code">💻</a></td>
308
258
  </tr>
309
259
  </tbody>
310
260
  </table>
@@ -0,0 +1,161 @@
1
+ agenta/__init__.py,sha256=76BQuUIAiXkLz_hjiDAsqos8UAD8J2zGkfwJOewtP3Y,580
2
+ agenta/cli/evaluation_commands.py,sha256=fs6492tprPId9p8eGO02Xy-NCBm2RZNJLZWcUxugwd8,474
3
+ agenta/cli/helper.py,sha256=k3qrrwcaIztWsHCBx6tD57ZPDfLzI8lCoDjL5F9yvSc,6204
4
+ agenta/cli/main.py,sha256=oDhr3cBOjm5EisXbq8ix8RFptDmwl0hsXbyIyQ9LXf4,9492
5
+ agenta/cli/telemetry.py,sha256=GaFFRsE_NtrcSSJ10r2jhgFs5Sk8gf2C09Ox3gOr3eU,1317
6
+ agenta/cli/variant_commands.py,sha256=y1OQgdVAjqiGldgih1rORtuFqOytD4Ncuh-vMue3gik,16915
7
+ agenta/cli/variant_configs.py,sha256=PLiuMKadVzs6Gi2uYaT0pZzyULNHDXaTMDWboqpwWdU,1293
8
+ agenta/client/Readme.md,sha256=zWJ6VMYCG124op5RcqgWBdJdlGkGQ2rPLk9F32rWvqo,2756
9
+ agenta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ agenta/client/api.py,sha256=0u1vd7V2ctFEtY6KeGGiOeoDv6vyeit32u6c6BVyc4w,2434
11
+ agenta/client/api_models.py,sha256=zebfE2-0-SW1SvzyarzmSJMXqyiCLKrX2sHpzoX-RnU,623
12
+ agenta/client/backend/__init__.py,sha256=tkSqI-dciccMpM2diWMe7pF0SjsGXPV_kR-029xNN9w,3853
13
+ agenta/client/backend/client.py,sha256=UvNYKUplPdK1AkFfRsOdyEI7hoTqNCtD_pKlkgtUGGo,73690
14
+ agenta/client/backend/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
15
+ agenta/client/backend/core/api_error.py,sha256=TtMtCdxXjd7Tasc9c8ooFg124nPrb2MXG-tKOXV4u9I,440
16
+ agenta/client/backend/core/client_wrapper.py,sha256=kQEqxdm31r7V9x--mMliWOdMujD3dtPZyYBNzxgNdrs,972
17
+ agenta/client/backend/core/datetime_utils.py,sha256=BHjt_H3WVslcuPsr6qjJoVif_SsdLvFN0c43ABE5UiQ,1069
18
+ agenta/client/backend/core/jsonable_encoder.py,sha256=ePEZ-ty4uISZv_wVpA7ldkdLfwoQ4lPXHwhLUEcVKR0,3825
19
+ agenta/client/backend/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
20
+ agenta/client/backend/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
21
+ agenta/client/backend/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
22
+ agenta/client/backend/resources/__init__.py,sha256=FmnJFlWhImj32RyFA33LRaKLRI7piePWltsGeXi7_0s,600
23
+ agenta/client/backend/resources/apps/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
24
+ agenta/client/backend/resources/apps/client.py,sha256=Y5A1Iq43BwewNaa3UDxYvtbMX17vOP7uPVH43WFOK9U,37010
25
+ agenta/client/backend/resources/bases/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
26
+ agenta/client/backend/resources/bases/client.py,sha256=LAgExQT832zsNdU4EOOAVlvolw7YD2n7H_mcq4axLjY,4801
27
+ agenta/client/backend/resources/configs/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
28
+ agenta/client/backend/resources/configs/client.py,sha256=Yu19MK-X6pMxVbBkBGFXDqc6GQ5qzVHvYM7fl76JGEA,13751
29
+ agenta/client/backend/resources/containers/__init__.py,sha256=Haw2PwiPhNvM26PLQN57jY0bN-QqPoDG4VA-P_uGL3A,153
30
+ agenta/client/backend/resources/containers/client.py,sha256=3ZPvsrTEBKnoLHkDY7RTFptg8AEsMqaQsMG1ga5AzZE,14543
31
+ agenta/client/backend/resources/containers/types/__init__.py,sha256=b6yQ-p_vsI5cpKh-Qa8xNE-M5nLHjfBvfgD4JIhqEkY,176
32
+ agenta/client/backend/resources/containers/types/container_templates_response.py,sha256=_wjAb-dqy5-pXdkQtgOatChpbyAHnc_zSXurG0e_QSk,191
33
+ agenta/client/backend/resources/environments/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
34
+ agenta/client/backend/resources/environments/client.py,sha256=0i2zennrev1i_8BSrHoapUTg53RtDHK7pUE4b1W0KSQ,4644
35
+ agenta/client/backend/resources/evaluations/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
36
+ agenta/client/backend/resources/evaluations/client.py,sha256=T8ETcdUdAMzSA3TGu-C0CsSKZSWTsvyIX6JXSVuA0qQ,37013
37
+ agenta/client/backend/resources/evaluators/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
38
+ agenta/client/backend/resources/evaluators/client.py,sha256=xaafddTNiiPpcxbiUFqimaN3tE6fiemYNOpt1wRLci0,21753
39
+ agenta/client/backend/resources/observability/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
40
+ agenta/client/backend/resources/observability/client.py,sha256=KK1eQLnk0nVmg4uihkEdowkzWIzIwWmvedkq4IsOIMY,42924
41
+ agenta/client/backend/resources/testsets/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
42
+ agenta/client/backend/resources/testsets/client.py,sha256=jVRwbUAPPgXoApClHjoDQNeVQTxZWq4c7-CT1YZ7DRA,25010
43
+ agenta/client/backend/resources/variants/__init__.py,sha256=BMR4SvsrqXC9FU8nPVzY8M9xGrBEhEGrmbgvy3iM1aE,171
44
+ agenta/client/backend/resources/variants/client.py,sha256=ELuYuDhSc-5Z5lm24oU4mOvQaODtFIgT-y0rXwsT9Gg,29839
45
+ agenta/client/backend/resources/variants/types/__init__.py,sha256=TrRUAyPsJ1bKg2gfW0d_S1rEu6eaYnHmr2g_URTuwPU,216
46
+ agenta/client/backend/resources/variants/types/add_variant_from_base_and_config_response.py,sha256=kepx7JD-7E4_vFiqxafZU57ZI2aSzMh_JXw23KK1nOs,226
47
+ agenta/client/backend/types/__init__.py,sha256=FQnM1StuSHHC1FaQ-785TMyanZg2f3E0CblxR4SQ2Rg,5089
48
+ agenta/client/backend/types/aggregated_result.py,sha256=jJj6Yr7D5-pjSezS9UXoE9Ot9OViJFjbMd57F1mDEio,1133
49
+ agenta/client/backend/types/aggregated_result_evaluator_config.py,sha256=J5LDer6FMlKU8Cl3AmnNXmPykEgZFqESmeZObpezo3k,227
50
+ agenta/client/backend/types/app.py,sha256=PLCQN6kqpkAMpAZ2Tk5s1FesewOZmkMv18eASzQ14gg,974
51
+ agenta/client/backend/types/app_variant_response.py,sha256=zfQV8jXGP-A1KBHKKnY6AEGqVJSwmMecE-NSRbvyWrQ,1344
52
+ agenta/client/backend/types/app_variant_revision.py,sha256=FO3d6hPOqjz5uPSCk_9f2UipfkiIHKvK4jlpV84EWHo,1075
53
+ agenta/client/backend/types/base_output.py,sha256=ynXhDBQKrkR6Lnkx-yv6Q8xW4wXmzXur0T-hzmkjBpc,983
54
+ agenta/client/backend/types/body_import_testset.py,sha256=7dVF3mv3VO0Co8F0qxLAgu4jabqDPjebK4mYvcd_TuA,1061
55
+ agenta/client/backend/types/config_db.py,sha256=P0cSYvVOn0ZxpYMIdvhWpQVjRuBS5APe6qlc69AXaF4,1028
56
+ agenta/client/backend/types/create_app_output.py,sha256=pgnTnfZx35Q-8wZ1yTZBQ0ydYacGzFC9kyLug_UvymM,986
57
+ agenta/client/backend/types/create_span.py,sha256=q6FDyuS9mMBffcJD7RuYJR9etX9KvaODRW093lQKX1o,1754
58
+ agenta/client/backend/types/create_trace_response.py,sha256=FO-Ii9JEn2AQ1nmZYmjnKRbACsNxRvY_-xn7Ys7Yo8A,1012
59
+ agenta/client/backend/types/docker_env_vars.py,sha256=altCvA1k-zdAkKNYLwaCnmV48HZg9cwe2cHu_BGImac,986
60
+ agenta/client/backend/types/environment_output.py,sha256=dl0GKodeqB7kWK5mH6Y4iBppkpwRzSTmtkXH1II4L6w,1257
61
+ agenta/client/backend/types/environment_output_extended.py,sha256=WL1tA7HGax33eFL_ijPPYBJnbyz5NqTds2hnxxdgDQ8,1367
62
+ agenta/client/backend/types/environment_revision.py,sha256=mSxckq5BtuJzQXBdxMKisdG3taGFi8MoVerkhmpIsjA,1128
63
+ agenta/client/backend/types/error.py,sha256=iX_uV31o59d19V6-8yEAVC9RJanHGS8QvY8EC7HsIAk,996
64
+ agenta/client/backend/types/evaluation.py,sha256=tVXTXDryqk3L7Dhl4zqSlczwcKlUIe0WgsqXGJ3ino0,1527
65
+ agenta/client/backend/types/evaluation_scenario.py,sha256=MqxMVliNQCGu1LCq2HMlx7YuZ1UQn4KJQtHZI6TsXoU,1497
66
+ agenta/client/backend/types/evaluation_scenario_input.py,sha256=cf562ry0rYNvLWx3hvQu9uNPrdrI3lRZ0IAIiCn4-Fs,1027
67
+ agenta/client/backend/types/evaluation_scenario_output.py,sha256=g4UjTs-c5pfEPyeCD2Jgf871Exxqy0a7iTy3eymjFQo,1076
68
+ agenta/client/backend/types/evaluation_scenario_result.py,sha256=rKV0ZxJdbLaij9k54uq6YwzYDpaxzUa8tcYEz1bb050,1033
69
+ agenta/client/backend/types/evaluation_scenario_score_update.py,sha256=YiwSbL_59lgK5VrmqMGSTWLi-m2sEOtOEO05aV53Urs,983
70
+ agenta/client/backend/types/evaluation_status_enum.py,sha256=Pf3iyPYgdpEdlEUuphWwyz5F6-ujofod3UUTbv5_GDI,1372
71
+ agenta/client/backend/types/evaluation_type.py,sha256=WX2DlUeT3ULUQlA_yFabpiMqCBEsbjNyfdfN3EkLWR0,644
72
+ agenta/client/backend/types/evaluation_webhook.py,sha256=emuKpD4NQjgYkjvQUyKLzHHkMk9FwdXuYFwunTaY4gw,971
73
+ agenta/client/backend/types/evaluator.py,sha256=AezEarRlPQ19mDU5Af4zixwbWckbMPg8Kjn11HxyXFQ,1084
74
+ agenta/client/backend/types/evaluator_config.py,sha256=d3_ZxThl6ZkXTbmtBiqIg6CJIH8ha6am6fPEYcxp89A,1124
75
+ agenta/client/backend/types/feedback.py,sha256=aYDUHvxJ0A3Dhs8JSWYLpxef3bIaHrug6gXH5pNtuAQ,1136
76
+ agenta/client/backend/types/get_config_response.py,sha256=8a-RJDiBewC5Hdc0sZgt7sGwBfFzSohYqXIlQF1azf0,1081
77
+ agenta/client/backend/types/http_validation_error.py,sha256=YhAPLKvuWLcgHn-uVWiZdWInseMiIS5eymdHKDqAB6Y,1060
78
+ agenta/client/backend/types/human_evaluation.py,sha256=fSSO8Li0pAPcYe6lVUvJfrBTeGlJ8srdSw478vxXwW0,1305
79
+ agenta/client/backend/types/human_evaluation_scenario.py,sha256=Ug3XQusHX5VfU_X2_EJhU58xgedZi59MrRIAgJWk3VY,1508
80
+ agenta/client/backend/types/human_evaluation_scenario_input.py,sha256=10bnX4xbKSxIBveDr8g3lhNIYOcfTingDh7o55kT-F4,1006
81
+ agenta/client/backend/types/human_evaluation_scenario_output.py,sha256=dA4hN-SeTcoHvNCaKwDvJrwsTw9DY5EeCWz2P2YmF34,1010
82
+ agenta/client/backend/types/human_evaluation_scenario_update.py,sha256=k3lekLiBM6nsr7_tGCrzPRuprAtEhWH_JGswqkT-D_M,1459
83
+ agenta/client/backend/types/human_evaluation_update.py,sha256=EvuEisyV9a-iOvqyUuj6NU8f3K_n9EbuOZCjqS95S8k,1065
84
+ agenta/client/backend/types/image.py,sha256=p7Vmp7HlMV3YyXe8SFdXYJjCbPNIypW6NfVGorwWcuU,1087
85
+ agenta/client/backend/types/invite_request.py,sha256=1nJTUHspzw2WYpUSd4UUtRnjDHM-dqDBvYewgw-hCQE,993
86
+ agenta/client/backend/types/list_api_keys_response.py,sha256=ZNh7jKwHEMKNp8OV5WJ5XxtKn39DwqK1f8vlFKl54x4,1097
87
+ agenta/client/backend/types/llm_run_rate_limit.py,sha256=mfT4lTczPxrJvd8ZCOAjPvw58QoM151p_uZT0PWNOJ4,1045
88
+ agenta/client/backend/types/llm_tokens.py,sha256=PzJZM5RdXCHGDOkzCN2jQc3iAvCdr0iazpsrNUOE6kk,1069
89
+ agenta/client/backend/types/new_human_evaluation.py,sha256=lIgMjVccSp22RRfMGGLH4-yKjMtJeQvjhlwX9EtAxmY,1150
90
+ agenta/client/backend/types/new_testset.py,sha256=9NOC1-f_UZASy4ptzidLNcRU6Odq609ayvSQxEva-40,1009
91
+ agenta/client/backend/types/organization.py,sha256=vJf6Gbz8WCnqabPQmt_t_gfrWPpuvTXgTxKCJKJsrmc,1218
92
+ agenta/client/backend/types/organization_output.py,sha256=QNAKwQl6QkHIS0QKx8po2JU3mu14UrbcX2rU7VsAdqY,981
93
+ agenta/client/backend/types/permission.py,sha256=MwGwNvKhH8W4I0uJZG_mUydJgwE5CF1pJOEExvjkAy4,6407
94
+ agenta/client/backend/types/result.py,sha256=XEUcohx29Rl8P9KfnygbdbeNcgvPgO6WOZv9bebCVsg,1055
95
+ agenta/client/backend/types/score.py,sha256=OAur_nJtRQmpboZfzFi2l1-zmNxFfETcl13C7OAvpMw,111
96
+ agenta/client/backend/types/simple_evaluation_output.py,sha256=gRLOCps1hhXPgioADjD2DfabNJf9WgmmhPI6lJY00q4,1117
97
+ agenta/client/backend/types/span.py,sha256=qcxUudmxyTRcsr6S-5nd9NUehJQHrqKFw6MrMnXHVl0,1455
98
+ agenta/client/backend/types/span_detail.py,sha256=_DkGyFpLWjG-sTnBNy0wpp--GxDKaUwIzSJdSEnYNZo,1519
99
+ agenta/client/backend/types/span_kind.py,sha256=3i1C1U-NzDgFpgw8QL0c7CwHHhejCUpSmq5FD1YHiJI,1324
100
+ agenta/client/backend/types/span_status_code.py,sha256=uxcUEsPLQa2r2eIgYw8LRmMj5GQaE98UnL1JgUsdyuM,643
101
+ agenta/client/backend/types/span_variant.py,sha256=BQIrSv4zCNeUSLK5ad3l3BHoc856jXc-v9yd2oTwOkk,1008
102
+ agenta/client/backend/types/template.py,sha256=mInivp-YnXqt28mWM9y4zqNezOfvUEPcmtM6CHePkyk,1037
103
+ agenta/client/backend/types/template_image_info.py,sha256=BycGLw_7XHl9GWOBpu1eu3I_fSQ3n5UVFQdzC0cQ_v8,1189
104
+ agenta/client/backend/types/test_set_output_response.py,sha256=T1HtKP3y2z5UOvqR4_rpUadr7zfGQUxzXAhXBrsBWCg,1088
105
+ agenta/client/backend/types/test_set_simple_response.py,sha256=YI4tRQodB7-5PsIt4RVb8JwJ16vvsFXo7ed_0iHCoOM,1004
106
+ agenta/client/backend/types/trace_detail.py,sha256=LWFTt32J33y1oVJnGyJnzG2DwhFF7ssnPXOm87qK-QY,1503
107
+ agenta/client/backend/types/uri.py,sha256=dfnTFYdnqiqBzwKItet51L-UMuyd8hkdTw9g4aGrOjM,953
108
+ agenta/client/backend/types/validation_error.py,sha256=KiHcCQ9smOvyaCnwh9EqD-EfiR24wrczv6p-VDS9p5I,1086
109
+ agenta/client/backend/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
110
+ agenta/client/backend/types/variant_action.py,sha256=38SadKvaBM9gNwoTD9AHxfdnWR3_syxRY9B1LEEvX5E,1031
111
+ agenta/client/backend/types/variant_action_enum.py,sha256=wFQ74LoXocZkIMok5iTN7ztd7ikh51dZEeedjBm23A8,511
112
+ agenta/client/backend/types/with_pagination.py,sha256=JlU459Q0y214EJx8_m6o9XGPVfaD4_lK7srVYkd6jwY,1114
113
+ agenta/client/backend/types/workspace_member_response.py,sha256=SVy_0_Ojx-77yCXIOrZL70JdaXJE7yfqdpTWSeR2TVg,1097
114
+ agenta/client/backend/types/workspace_permission.py,sha256=m5wWW25BMC3Ja2KnuipvnKT_4bNX-tyMhczQ3WBiTME,1163
115
+ agenta/client/backend/types/workspace_response.py,sha256=DwUNQ7kQEuHtUW6M4Xj497347nVr_H2oxtCmuP9irqA,1291
116
+ agenta/client/backend/types/workspace_role.py,sha256=PxKM8IcPoair8nK2Ed0GXZQxVffjy_0OcvytES0htc8,1198
117
+ agenta/client/backend/types/workspace_role_response.py,sha256=i79slTp45qCEsUFPg0AUr_wngjcCko5zaFHXwsjrZWw,1072
118
+ agenta/client/client.py,sha256=DWOGS9A8u4wu28s9jGOR4eRhf7vo4zT7GyDvrIGu59Y,19648
119
+ agenta/client/exceptions.py,sha256=cxLjjKvZKlUgBxt4Vn9J_SsezJPPNHvrZxnoq-D6zmw,94
120
+ agenta/config.py,sha256=Id-Ie1yf9QRP1YPhRYaYSOruRe6RBrsCXkG9rAa-ZtA,732
121
+ agenta/config.toml,sha256=ptE0P49bwsu3Luyn7OLFmk2buPhj5D-MA-O_ErOGoLg,223
122
+ agenta/docker/docker-assets/Dockerfile.cloud.template,sha256=CwJbCTezOYCGowA-Hh19f85YXgynT89CrWxjNxLJJfg,317
123
+ agenta/docker/docker-assets/Dockerfile.template,sha256=oIUjbDO2a689esL1XCw8nNyyDRAT3kCyH9_3z6c779Q,241
124
+ agenta/docker/docker-assets/README.md,sha256=XHxwh2ks_ozrtAU7SLbL3J14SB2holG6buoTxwmMiZM,102
125
+ agenta/docker/docker-assets/entrypoint.sh,sha256=29XK8VQjQsx4hN2j-4JDy-6kQb5y4LCqZEa7PD4eqCQ,74
126
+ agenta/docker/docker-assets/lambda_function.py,sha256=h4UZSSfqwpfsCgERv6frqwm_4JrYu9rLz3I-LxCfeEg,83
127
+ agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6FcH2QfA,251
128
+ agenta/docker/docker_utils.py,sha256=ueA-t4-UCZDemEMPUX6GqST-0Ewfc05G3GKkmRJuK4w,3422
129
+ agenta/sdk/__init__.py,sha256=jmeLRuXrew02ZruODZYIu4kpw0S8vV6JhMPQWFGtj30,648
130
+ agenta/sdk/agenta_decorator.py,sha256=aYTsTGd22X87CxyqGIyfNGcNjVZCaO8yDk_M7US9Dpw,17287
131
+ agenta/sdk/agenta_init.py,sha256=KHiIBtItXxOAkVtuFQfwokvw1_Xop8cCKYoVoqCMx5g,8886
132
+ agenta/sdk/context.py,sha256=q-PxL05-I84puunUAs9LGsffEXcYhDxhQxjuOz2vK90,901
133
+ agenta/sdk/router.py,sha256=0sbajvn5C7t18anH6yNo7-oYxldHnYfwcbmQnIXBePw,269
134
+ agenta/sdk/tracing/context_manager.py,sha256=HskDaiORoOhjeN375gm05wYnieQzh5UnoIsnSAHkAyc,252
135
+ agenta/sdk/tracing/decorators.py,sha256=ujtU8gf3GDoHYuLTfEYK_2eIYZ-1oX5dpv02Mf4l_II,1191
136
+ agenta/sdk/tracing/llm_tracing.py,sha256=kJ1yrl6quoswIgxR-dBQBAdmUDhWU_X4K4ByNS52J1k,7175
137
+ agenta/sdk/tracing/logger.py,sha256=4zG9c51p8xPdKA5SL8MOgBfkpCnBSuV6JfWiXO0A7oc,473
138
+ agenta/sdk/tracing/tasks_manager.py,sha256=XVGBEOwmHa6KcCC0PApk0_bZ0Ilk2ESuduNObB1rw2s,3792
139
+ agenta/sdk/types.py,sha256=Mn0yBlHh_Yr_5oQXUfsYI3V7sJAVWkJgkxEOBDOOMS0,5852
140
+ agenta/sdk/utils/globals.py,sha256=lpgflY8xovZJtHfJf41dbNCZGwx07YNkG9ldruv6xoI,360
141
+ agenta/sdk/utils/helper/openai_cost.py,sha256=1VkgvucDnNZm1pTfcVLz9icWunntp1d7zwMmnviy3Uw,5877
142
+ agenta/sdk/utils/preinit.py,sha256=YlJL7RLfel0R7DFp-jK7OV-z4ZIQJM0oupYlk7g8b5o,1278
143
+ agenta/templates/compose_email/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
144
+ agenta/templates/compose_email/app.py,sha256=SG8QnBkC49MtvWa2z5_YQ2d8wxZxhO_hWs15j3CsWvc,2384
145
+ agenta/templates/compose_email/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
146
+ agenta/templates/compose_email/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
147
+ agenta/templates/compose_email/template.toml,sha256=H0y1i4t-gHgc-dbiTWcf3QiMAOU92MgkY_V9x3Tob-E,47
148
+ agenta/templates/extract_data_to_json/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
149
+ agenta/templates/extract_data_to_json/app.py,sha256=xNm9Gs2LzLujm1ox-T1Cn0JkU2tmYPqhwuAR9HnHa9Y,1320
150
+ agenta/templates/extract_data_to_json/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
151
+ agenta/templates/extract_data_to_json/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
152
+ agenta/templates/extract_data_to_json/template.toml,sha256=5TpnTRmvHbIzANevDCCHc8AOJXL431TN2sBor6tosUY,60
153
+ agenta/templates/simple_prompt/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
154
+ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR9KdBQ1Yc,646
155
+ agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
156
+ agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
157
+ agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
158
+ agenta-0.13.0a1.dist-info/METADATA,sha256=opQ9aTTLZU5okKXpy-RmQRre36x9D8S_e-p4rolfUuw,26433
159
+ agenta-0.13.0a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
160
+ agenta-0.13.0a1.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
161
+ agenta-0.13.0a1.dist-info/RECORD,,
@@ -1,161 +0,0 @@
1
- agenta/__init__.py,sha256=EqEmL_hYYa0m2mj8xVK1IWCXRJuDj3IcacY7t3XenZM,548
2
- agenta/cli/evaluation_commands.py,sha256=fs6492tprPId9p8eGO02Xy-NCBm2RZNJLZWcUxugwd8,474
3
- agenta/cli/helper.py,sha256=k3qrrwcaIztWsHCBx6tD57ZPDfLzI8lCoDjL5F9yvSc,6204
4
- agenta/cli/main.py,sha256=oDhr3cBOjm5EisXbq8ix8RFptDmwl0hsXbyIyQ9LXf4,9492
5
- agenta/cli/telemetry.py,sha256=GaFFRsE_NtrcSSJ10r2jhgFs5Sk8gf2C09Ox3gOr3eU,1317
6
- agenta/cli/variant_commands.py,sha256=y1OQgdVAjqiGldgih1rORtuFqOytD4Ncuh-vMue3gik,16915
7
- agenta/cli/variant_configs.py,sha256=PLiuMKadVzs6Gi2uYaT0pZzyULNHDXaTMDWboqpwWdU,1293
8
- agenta/client/Readme.md,sha256=zWJ6VMYCG124op5RcqgWBdJdlGkGQ2rPLk9F32rWvqo,2756
9
- agenta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- agenta/client/api.py,sha256=0u1vd7V2ctFEtY6KeGGiOeoDv6vyeit32u6c6BVyc4w,2434
11
- agenta/client/api_models.py,sha256=zebfE2-0-SW1SvzyarzmSJMXqyiCLKrX2sHpzoX-RnU,623
12
- agenta/client/backend/__init__.py,sha256=tkSqI-dciccMpM2diWMe7pF0SjsGXPV_kR-029xNN9w,3853
13
- agenta/client/backend/client.py,sha256=9Zi2At6kKGzT6cWc1-EDj369yoGrhxCWYRO6Ufs0C_s,72217
14
- agenta/client/backend/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
15
- agenta/client/backend/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
16
- agenta/client/backend/core/client_wrapper.py,sha256=kQEqxdm31r7V9x--mMliWOdMujD3dtPZyYBNzxgNdrs,972
17
- agenta/client/backend/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
18
- agenta/client/backend/core/jsonable_encoder.py,sha256=MTYkDov2EryHgee4QM46uZiBOuOXK9KTHlBdBwU-CpU,3799
19
- agenta/client/backend/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
20
- agenta/client/backend/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
21
- agenta/client/backend/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
22
- agenta/client/backend/resources/__init__.py,sha256=H2HX6KHYvPUVq39rRQf37OpBQK7LDWa6tOr_UVBUKAo,555
23
- agenta/client/backend/resources/apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
24
- agenta/client/backend/resources/apps/client.py,sha256=qQjP-fX5QMeKeKh2LlzxKEG6oMlNYb8f7db3UUBda-8,36212
25
- agenta/client/backend/resources/bases/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
26
- agenta/client/backend/resources/bases/client.py,sha256=iAe6yNwqu9B8UJQI8ElL5A14Xh_bvPcGut7DzhjLcS0,4751
27
- agenta/client/backend/resources/configs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
28
- agenta/client/backend/resources/configs/client.py,sha256=Gwix4eOpBW48Z89g43xWW7g1OULmG7KFjiHHS2wXgY8,13151
29
- agenta/client/backend/resources/containers/__init__.py,sha256=Haw2PwiPhNvM26PLQN57jY0bN-QqPoDG4VA-P_uGL3A,153
30
- agenta/client/backend/resources/containers/client.py,sha256=XfsEd5phPRD6UufcEA6pYwbFXZgZYM-Uknl-BaGvT3o,14131
31
- agenta/client/backend/resources/containers/types/__init__.py,sha256=b6yQ-p_vsI5cpKh-Qa8xNE-M5nLHjfBvfgD4JIhqEkY,176
32
- agenta/client/backend/resources/containers/types/container_templates_response.py,sha256=_wjAb-dqy5-pXdkQtgOatChpbyAHnc_zSXurG0e_QSk,191
33
- agenta/client/backend/resources/environments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
34
- agenta/client/backend/resources/environments/client.py,sha256=FsgTZ74_pPs4t8G58nS60CiRkKmZM16NhYaZCENG3mA,4496
35
- agenta/client/backend/resources/evaluations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
36
- agenta/client/backend/resources/evaluations/client.py,sha256=sJ3l6OsNPZV8PB7Focw06KKdBhF2KKwjQ5YqNxcn4lI,36115
37
- agenta/client/backend/resources/evaluators/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
38
- agenta/client/backend/resources/evaluators/client.py,sha256=9v5WDk_G7exMnIAJtqZvhT3s94UCi6DPkdv0L4_uecE,21177
39
- agenta/client/backend/resources/observability/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
40
- agenta/client/backend/resources/observability/client.py,sha256=kZmZJPpVq5RdSLchxUkjhbGOYqwqAQDnrDKcQjChjCw,41866
41
- agenta/client/backend/resources/testsets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
42
- agenta/client/backend/resources/testsets/client.py,sha256=FTxUrDR6VwqnflIe90MnLgTM26vg7MBXaRZqTFnVEbU,24436
43
- agenta/client/backend/resources/variants/__init__.py,sha256=BMR4SvsrqXC9FU8nPVzY8M9xGrBEhEGrmbgvy3iM1aE,171
44
- agenta/client/backend/resources/variants/client.py,sha256=mGf_iyGlFKaMqaqaT4m6UCrJCsIdJ-nVkb2_4_6DhZc,29056
45
- agenta/client/backend/resources/variants/types/__init__.py,sha256=OnOdJBG9tZwCBupbe-6Yogm8w7PGdO5ro3NNZHq_Rz8,207
46
- agenta/client/backend/resources/variants/types/add_variant_from_base_and_config_response.py,sha256=kepx7JD-7E4_vFiqxafZU57ZI2aSzMh_JXw23KK1nOs,226
47
- agenta/client/backend/types/__init__.py,sha256=FQnM1StuSHHC1FaQ-785TMyanZg2f3E0CblxR4SQ2Rg,5089
48
- agenta/client/backend/types/aggregated_result.py,sha256=R5EnfpbRJHjszOa6DDOHXANROjHc6Eu_AHCDOlCjxYQ,1039
49
- agenta/client/backend/types/aggregated_result_evaluator_config.py,sha256=q8Xp_CelxKtBwS2DOCHIyx0WuWejTuODIB0Na34rLyA,221
50
- agenta/client/backend/types/app.py,sha256=HOJuRb1UrGy7CLSVF2bNzFbjGoTbjV44HZvNXSq6vCY,880
51
- agenta/client/backend/types/app_variant_response.py,sha256=0OsqprSELiP9ueyE7dcAlCtPmk6hVEYjLZWXyuVivBs,1250
52
- agenta/client/backend/types/app_variant_revision.py,sha256=D2jpTkinrQKqiaeBYABx_DY1-X0Elt2nNIJHRSyV6SQ,981
53
- agenta/client/backend/types/base_output.py,sha256=2Uvig4BgcnXpp4Uacm0uvQM2bay8sgM_7qJhhAt3djI,889
54
- agenta/client/backend/types/body_import_testset.py,sha256=I-5lzeNiKJNpKtLBISrB0vHCuFjUHIQl0TueK9hotVY,967
55
- agenta/client/backend/types/config_db.py,sha256=IIipuGPO_Geny1O1oJ_Rp4vHHzkfDu_I3JBe9fFQJaE,934
56
- agenta/client/backend/types/create_app_output.py,sha256=i0EtuF1riWia-dja38qMzK5DUF1jDSQcH-QyC4M9yUo,892
57
- agenta/client/backend/types/create_span.py,sha256=xRTHRA9zugsEGk8rZNcrgzkJCdAvrKVaZMjnkKcExlA,1660
58
- agenta/client/backend/types/create_trace_response.py,sha256=1zQb6We00PbX5q3ejD75dFLhyM9QWeQgnC1hb_oQZAU,918
59
- agenta/client/backend/types/docker_env_vars.py,sha256=jBlnYS48mzfz2RD-gyyUOhL5ySSEhL48hjIgUTy-BIg,892
60
- agenta/client/backend/types/environment_output.py,sha256=Ze9FidHFH0PJYK0nHFXNuTmmo4nTx7OTkXz2ba51NHk,1163
61
- agenta/client/backend/types/environment_output_extended.py,sha256=xUt7Tonz4NF9mNWnbvb_FbAx56bV9dFp_jRTZu6JvKk,1273
62
- agenta/client/backend/types/environment_revision.py,sha256=R717-TBMVI3jd2DI-i6fFGTPcDX_9MG1S0saK3IxVy0,1034
63
- agenta/client/backend/types/error.py,sha256=nzso7cqvPcoTkhlVzqKwKppLRWpN3gY1sWRcTQ69wJ8,902
64
- agenta/client/backend/types/evaluation.py,sha256=di0ljzfvPjc_kCINhjxYNJw6selzPg2Ug9eVwuwS808,1433
65
- agenta/client/backend/types/evaluation_scenario.py,sha256=zVUUTYn4dX0U-lVssiZW9RANvaFTEvNP2Zg-_YWcz0M,1403
66
- agenta/client/backend/types/evaluation_scenario_input.py,sha256=uum3D9QqIhwKwOjYGcuCe1Ohq7-rqoPcEo5tb7HGzTs,933
67
- agenta/client/backend/types/evaluation_scenario_output.py,sha256=6MOs-QqYHbMPPYFOH2adD6FUYfN_zSLIKXEMw9b8Alo,982
68
- agenta/client/backend/types/evaluation_scenario_result.py,sha256=UE8XmErLRc7kn1ToaeU0FBr3qm6KRMgM6KAELGSF2QA,939
69
- agenta/client/backend/types/evaluation_scenario_score_update.py,sha256=tsuOwDXesgNEBu4_ItJcWgtLn-j6g6nZaY97z-WVtSM,889
70
- agenta/client/backend/types/evaluation_status_enum.py,sha256=Pf3iyPYgdpEdlEUuphWwyz5F6-ujofod3UUTbv5_GDI,1372
71
- agenta/client/backend/types/evaluation_type.py,sha256=ZFQn7gD4cJkHU8tSA1s3HH8lLH24ISDDuHb6K1C48mI,627
72
- agenta/client/backend/types/evaluation_webhook.py,sha256=C4j4pksPySSDrvK-w7KlFRRmIUKfyoTjtauKtHd28FA,877
73
- agenta/client/backend/types/evaluator.py,sha256=CN38kMdXI7MmqcK3GcC6g62S4eGo-rkCnKC0fCBBQ_g,990
74
- agenta/client/backend/types/evaluator_config.py,sha256=zg-3PP57BjJWoHxkiP0lr3OYDh1RpjYeCRF9yTHO3Jg,1030
75
- agenta/client/backend/types/feedback.py,sha256=KdWndLrtWFAvcVd8fkWSAegwQOGxTZSaTzUYEqMtwd4,1042
76
- agenta/client/backend/types/get_config_response.py,sha256=4zQk-O-crtjf7nwL3K7uT7EGqQuQvnN1HP6N8iBIoD0,987
77
- agenta/client/backend/types/http_validation_error.py,sha256=CDHSqRT_pUnxYWrHnFmgHyem5vZ3A5aPtFJGcmyE1m8,966
78
- agenta/client/backend/types/human_evaluation.py,sha256=_3jLAmRj0RNP4uEkE5iP5e_VwrE79QrboqWzEZ9AeUs,1211
79
- agenta/client/backend/types/human_evaluation_scenario.py,sha256=3jp6zUSGjyCLasTUI8LGhsyRSQNOf2YNVRjzdTy4Ac0,1414
80
- agenta/client/backend/types/human_evaluation_scenario_input.py,sha256=273wHmDK1TfdFuYX318vVrAcTOnpoish2z--euBV-GY,912
81
- agenta/client/backend/types/human_evaluation_scenario_output.py,sha256=f970ElW1QW2oE9qlcQQxtmcR5PKTNeNLmiu5Q7SUdvA,916
82
- agenta/client/backend/types/human_evaluation_scenario_update.py,sha256=fN5Yzq81yCd6AnzGmV6Z4Bf4hqoVavgAr848meq7_Kg,1365
83
- agenta/client/backend/types/human_evaluation_update.py,sha256=HXNnV4aMRcIGY9uMsrS6bWq_pFEvI0spjCoqsAx0PWM,971
84
- agenta/client/backend/types/image.py,sha256=ZLQ5dBCGQT2Q4vrrOSIGwoQhmFiuqffH7J8Qp41CIu8,993
85
- agenta/client/backend/types/invite_request.py,sha256=njlIoxlsYuEAKRAvgLbwy7vfq3KnC__6ePt1LbdDaxI,899
86
- agenta/client/backend/types/list_api_keys_response.py,sha256=V-gNYXtz9ls7cf_8DKTIYecMoMxSs2cmslY-rRcoLIk,1003
87
- agenta/client/backend/types/llm_run_rate_limit.py,sha256=xMP8IRV_UgD2OYJmx1gkeBpoivsr-5lCvk42PlD8FnM,951
88
- agenta/client/backend/types/llm_tokens.py,sha256=2YUf2Qae8RS4TqYytOFVNeHQ4lQ0SXsxUoS7MrIiXpQ,975
89
- agenta/client/backend/types/new_human_evaluation.py,sha256=iY-SOdcVxb8agai-WEmLtiKoCg2Y3sy9ut3TYSMJ0EI,1056
90
- agenta/client/backend/types/new_testset.py,sha256=DkRJwtf4v-A06UfedyciBVbpJ4QwvmQTmNTiy42_6SE,915
91
- agenta/client/backend/types/organization.py,sha256=z_iFtaRD9l4mjA3z0Ae8TxSeSfUgHkw4KouQJNQ1Tuo,1124
92
- agenta/client/backend/types/organization_output.py,sha256=950H5Sq_eUg2ppbmWI3mV6nqIkHn4-Pmqb0SGvNg-Ok,887
93
- agenta/client/backend/types/permission.py,sha256=MwGwNvKhH8W4I0uJZG_mUydJgwE5CF1pJOEExvjkAy4,6407
94
- agenta/client/backend/types/result.py,sha256=2HSJ916d0MV5PRhzHvH2lnYePjOoUzYn1Ye2GiItKts,961
95
- agenta/client/backend/types/score.py,sha256=OAur_nJtRQmpboZfzFi2l1-zmNxFfETcl13C7OAvpMw,111
96
- agenta/client/backend/types/simple_evaluation_output.py,sha256=IMLZ0KJ0jtVZE6Vp3o6fghQjh2VSyiLycLZGgeYk7J8,1023
97
- agenta/client/backend/types/span.py,sha256=65IP0B2tpioIZW4eoBDom8pS3kH7CZ-6kcx-OBVmac4,1361
98
- agenta/client/backend/types/span_detail.py,sha256=sJh9EpM55B7bqo5_nKATHIybmMbUIoaXUJvbn8NTVjQ,1425
99
- agenta/client/backend/types/span_kind.py,sha256=3i1C1U-NzDgFpgw8QL0c7CwHHhejCUpSmq5FD1YHiJI,1324
100
- agenta/client/backend/types/span_status_code.py,sha256=uxcUEsPLQa2r2eIgYw8LRmMj5GQaE98UnL1JgUsdyuM,643
101
- agenta/client/backend/types/span_variant.py,sha256=IpVszBqsWueV4jlixWrFpkdb_LDtXpeiJnseVjB9yik,914
102
- agenta/client/backend/types/template.py,sha256=PbQMG4DmItMCXUaY4L6V8gm_yMdYoKERCwF3ycRTDLc,943
103
- agenta/client/backend/types/template_image_info.py,sha256=6mx71Fv56KuLzkSZZ5TPf5pS5MPSPgthDOLiqGXhej0,1095
104
- agenta/client/backend/types/test_set_output_response.py,sha256=QBkCKuaAdF8EJnM57bra8hGV3dDPwa8lQenYu6dwwnI,994
105
- agenta/client/backend/types/test_set_simple_response.py,sha256=euSWgCQ7qqYcZ0Kv0IHUhtjY86ejZ9SYmwPVremAzqA,910
106
- agenta/client/backend/types/trace_detail.py,sha256=yc873SyCOpG9vYm1AZ1x6dJQ6tRqdDEbkWu05Y8fts0,1409
107
- agenta/client/backend/types/uri.py,sha256=1QunY-twQKtfDAfg33ymejfBtx8dtyNQSpcCbx35dpQ,859
108
- agenta/client/backend/types/validation_error.py,sha256=2JhGNJouo8QpfrMBoT_JCwYSn1nFN2Nnq0p9uPLDH-U,992
109
- agenta/client/backend/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
110
- agenta/client/backend/types/variant_action.py,sha256=CJ3GVzfYm7-tPstk48Py1k57pixeKJERAUHw-s3TY60,937
111
- agenta/client/backend/types/variant_action_enum.py,sha256=4Hd8JKpRyv2Lg5id1LnpL0dVFEdifqRtszQQxG0O9cs,497
112
- agenta/client/backend/types/with_pagination.py,sha256=Fq5am8lPGL2py8czlwwlclEilnbOGSSNp3m-rzwViXI,1020
113
- agenta/client/backend/types/workspace_member_response.py,sha256=j0wEgWb1CN9DAlCAdwIqZFIFU2Q7SP1KhAqGsdCATdA,1003
114
- agenta/client/backend/types/workspace_permission.py,sha256=eVXZIov8z-2zP8ancUrhmwVOLjwhqZfDpcNh88MhBHc,1069
115
- agenta/client/backend/types/workspace_response.py,sha256=5Ms1oGH3R3936GTeytLA3AKdYNo2T_Z9rX9YbciT1sQ,1197
116
- agenta/client/backend/types/workspace_role.py,sha256=PxKM8IcPoair8nK2Ed0GXZQxVffjy_0OcvytES0htc8,1198
117
- agenta/client/backend/types/workspace_role_response.py,sha256=2zpjx3quaSijREUvHjcgELyr9ZPJZsKqlrLs0wnkbVM,978
118
- agenta/client/client.py,sha256=DWOGS9A8u4wu28s9jGOR4eRhf7vo4zT7GyDvrIGu59Y,19648
119
- agenta/client/exceptions.py,sha256=cxLjjKvZKlUgBxt4Vn9J_SsezJPPNHvrZxnoq-D6zmw,94
120
- agenta/config.py,sha256=Id-Ie1yf9QRP1YPhRYaYSOruRe6RBrsCXkG9rAa-ZtA,732
121
- agenta/config.toml,sha256=ptE0P49bwsu3Luyn7OLFmk2buPhj5D-MA-O_ErOGoLg,223
122
- agenta/docker/docker-assets/Dockerfile.cloud.template,sha256=CwJbCTezOYCGowA-Hh19f85YXgynT89CrWxjNxLJJfg,317
123
- agenta/docker/docker-assets/Dockerfile.template,sha256=oIUjbDO2a689esL1XCw8nNyyDRAT3kCyH9_3z6c779Q,241
124
- agenta/docker/docker-assets/README.md,sha256=XHxwh2ks_ozrtAU7SLbL3J14SB2holG6buoTxwmMiZM,102
125
- agenta/docker/docker-assets/entrypoint.sh,sha256=29XK8VQjQsx4hN2j-4JDy-6kQb5y4LCqZEa7PD4eqCQ,74
126
- agenta/docker/docker-assets/lambda_function.py,sha256=h4UZSSfqwpfsCgERv6frqwm_4JrYu9rLz3I-LxCfeEg,83
127
- agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6FcH2QfA,251
128
- agenta/docker/docker_utils.py,sha256=ueA-t4-UCZDemEMPUX6GqST-0Ewfc05G3GKkmRJuK4w,3422
129
- agenta/sdk/__init__.py,sha256=GUZ5-xQtVK5Jwrr0iz2aalAQCNvNg283o8vRKVaH9nQ,616
130
- agenta/sdk/agenta_decorator.py,sha256=Aj_wJznW4f8aWTW6dRmrT9H6bTcHJSe7nXx9p9HzPik,16831
131
- agenta/sdk/agenta_init.py,sha256=KHiIBtItXxOAkVtuFQfwokvw1_Xop8cCKYoVoqCMx5g,8886
132
- agenta/sdk/context.py,sha256=q-PxL05-I84puunUAs9LGsffEXcYhDxhQxjuOz2vK90,901
133
- agenta/sdk/router.py,sha256=0sbajvn5C7t18anH6yNo7-oYxldHnYfwcbmQnIXBePw,269
134
- agenta/sdk/tracing/context_manager.py,sha256=HskDaiORoOhjeN375gm05wYnieQzh5UnoIsnSAHkAyc,252
135
- agenta/sdk/tracing/decorators.py,sha256=ujtU8gf3GDoHYuLTfEYK_2eIYZ-1oX5dpv02Mf4l_II,1191
136
- agenta/sdk/tracing/llm_tracing.py,sha256=ub-ujV96Ysij-uYq471gIChoLI7dpiX6cQqPOBrDF6w,6876
137
- agenta/sdk/tracing/logger.py,sha256=4zG9c51p8xPdKA5SL8MOgBfkpCnBSuV6JfWiXO0A7oc,473
138
- agenta/sdk/tracing/tasks_manager.py,sha256=XVGBEOwmHa6KcCC0PApk0_bZ0Ilk2ESuduNObB1rw2s,3792
139
- agenta/sdk/types.py,sha256=GiUiXDkbM2pMx1-mldzQT8uDUcm9sRqVUytThEkbjj4,4658
140
- agenta/sdk/utils/globals.py,sha256=lpgflY8xovZJtHfJf41dbNCZGwx07YNkG9ldruv6xoI,360
141
- agenta/sdk/utils/helper/openai_cost.py,sha256=1VkgvucDnNZm1pTfcVLz9icWunntp1d7zwMmnviy3Uw,5877
142
- agenta/sdk/utils/preinit.py,sha256=YlJL7RLfel0R7DFp-jK7OV-z4ZIQJM0oupYlk7g8b5o,1278
143
- agenta/templates/compose_email/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
144
- agenta/templates/compose_email/app.py,sha256=SG8QnBkC49MtvWa2z5_YQ2d8wxZxhO_hWs15j3CsWvc,2384
145
- agenta/templates/compose_email/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
146
- agenta/templates/compose_email/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
147
- agenta/templates/compose_email/template.toml,sha256=H0y1i4t-gHgc-dbiTWcf3QiMAOU92MgkY_V9x3Tob-E,47
148
- agenta/templates/extract_data_to_json/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
149
- agenta/templates/extract_data_to_json/app.py,sha256=xNm9Gs2LzLujm1ox-T1Cn0JkU2tmYPqhwuAR9HnHa9Y,1320
150
- agenta/templates/extract_data_to_json/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
151
- agenta/templates/extract_data_to_json/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
152
- agenta/templates/extract_data_to_json/template.toml,sha256=5TpnTRmvHbIzANevDCCHc8AOJXL431TN2sBor6tosUY,60
153
- agenta/templates/simple_prompt/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
154
- agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR9KdBQ1Yc,646
155
- agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
156
- agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
157
- agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
158
- agenta-0.13.0a0.dist-info/METADATA,sha256=anE4m0TsCa2vVc1HgT_aGvLwysYlsytNZCK0dSSTT2A,27378
159
- agenta-0.13.0a0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
160
- agenta-0.13.0a0.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
161
- agenta-0.13.0a0.dist-info/RECORD,,