agenta 0.13.0__py3-none-any.whl → 0.13.0a0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of agenta might be problematic. Click here for more details.
- agenta/__init__.py +0 -1
- agenta/client/backend/client.py +50 -169
- agenta/client/backend/core/api_error.py +1 -3
- agenta/client/backend/core/datetime_utils.py +1 -3
- agenta/client/backend/core/jsonable_encoder.py +3 -9
- agenta/client/backend/resources/__init__.py +1 -12
- agenta/client/backend/resources/apps/__init__.py +1 -0
- agenta/client/backend/resources/apps/client.py +26 -88
- agenta/client/backend/resources/bases/__init__.py +1 -0
- agenta/client/backend/resources/bases/client.py +2 -8
- agenta/client/backend/resources/configs/__init__.py +1 -0
- agenta/client/backend/resources/configs/client.py +14 -58
- agenta/client/backend/resources/containers/client.py +14 -46
- agenta/client/backend/resources/environments/__init__.py +1 -0
- agenta/client/backend/resources/environments/client.py +6 -18
- agenta/client/backend/resources/evaluations/__init__.py +1 -0
- agenta/client/backend/resources/evaluations/client.py +26 -86
- agenta/client/backend/resources/evaluators/__init__.py +1 -0
- agenta/client/backend/resources/evaluators/client.py +17 -57
- agenta/client/backend/resources/observability/__init__.py +1 -0
- agenta/client/backend/resources/observability/client.py +30 -100
- agenta/client/backend/resources/testsets/__init__.py +1 -0
- agenta/client/backend/resources/testsets/client.py +16 -56
- agenta/client/backend/resources/variants/client.py +26 -92
- agenta/client/backend/resources/variants/types/__init__.py +1 -3
- agenta/client/backend/types/aggregated_result.py +2 -10
- agenta/client/backend/types/aggregated_result_evaluator_config.py +1 -3
- agenta/client/backend/types/app.py +2 -10
- agenta/client/backend/types/app_variant_response.py +2 -10
- agenta/client/backend/types/app_variant_revision.py +2 -10
- agenta/client/backend/types/base_output.py +2 -10
- agenta/client/backend/types/body_import_testset.py +2 -10
- agenta/client/backend/types/config_db.py +2 -10
- agenta/client/backend/types/create_app_output.py +2 -10
- agenta/client/backend/types/create_span.py +2 -11
- agenta/client/backend/types/create_trace_response.py +2 -10
- agenta/client/backend/types/docker_env_vars.py +2 -10
- agenta/client/backend/types/environment_output.py +2 -10
- agenta/client/backend/types/environment_output_extended.py +2 -10
- agenta/client/backend/types/environment_revision.py +2 -10
- agenta/client/backend/types/error.py +2 -10
- agenta/client/backend/types/evaluation.py +2 -10
- agenta/client/backend/types/evaluation_scenario.py +2 -10
- agenta/client/backend/types/evaluation_scenario_input.py +2 -10
- agenta/client/backend/types/evaluation_scenario_output.py +2 -10
- agenta/client/backend/types/evaluation_scenario_result.py +2 -10
- agenta/client/backend/types/evaluation_scenario_score_update.py +2 -10
- agenta/client/backend/types/evaluation_type.py +1 -3
- agenta/client/backend/types/evaluation_webhook.py +2 -10
- agenta/client/backend/types/evaluator.py +2 -10
- agenta/client/backend/types/evaluator_config.py +2 -10
- agenta/client/backend/types/feedback.py +2 -10
- agenta/client/backend/types/get_config_response.py +3 -10
- agenta/client/backend/types/http_validation_error.py +2 -10
- agenta/client/backend/types/human_evaluation.py +2 -10
- agenta/client/backend/types/human_evaluation_scenario.py +2 -10
- agenta/client/backend/types/human_evaluation_scenario_input.py +2 -10
- agenta/client/backend/types/human_evaluation_scenario_output.py +2 -10
- agenta/client/backend/types/human_evaluation_scenario_update.py +2 -10
- agenta/client/backend/types/human_evaluation_update.py +2 -10
- agenta/client/backend/types/image.py +2 -10
- agenta/client/backend/types/invite_request.py +2 -10
- agenta/client/backend/types/list_api_keys_response.py +2 -10
- agenta/client/backend/types/llm_run_rate_limit.py +2 -10
- agenta/client/backend/types/llm_tokens.py +2 -10
- agenta/client/backend/types/new_human_evaluation.py +2 -10
- agenta/client/backend/types/new_testset.py +2 -10
- agenta/client/backend/types/organization.py +2 -10
- agenta/client/backend/types/organization_output.py +2 -10
- agenta/client/backend/types/result.py +2 -10
- agenta/client/backend/types/simple_evaluation_output.py +2 -10
- agenta/client/backend/types/span.py +2 -10
- agenta/client/backend/types/span_detail.py +2 -10
- agenta/client/backend/types/span_variant.py +2 -10
- agenta/client/backend/types/template.py +2 -10
- agenta/client/backend/types/template_image_info.py +2 -10
- agenta/client/backend/types/test_set_output_response.py +2 -10
- agenta/client/backend/types/test_set_simple_response.py +2 -10
- agenta/client/backend/types/trace_detail.py +2 -10
- agenta/client/backend/types/uri.py +2 -10
- agenta/client/backend/types/validation_error.py +2 -10
- agenta/client/backend/types/variant_action.py +2 -10
- agenta/client/backend/types/variant_action_enum.py +1 -3
- agenta/client/backend/types/with_pagination.py +2 -10
- agenta/client/backend/types/workspace_member_response.py +2 -10
- agenta/client/backend/types/workspace_permission.py +2 -10
- agenta/client/backend/types/workspace_response.py +2 -10
- agenta/client/backend/types/workspace_role_response.py +2 -10
- agenta/sdk/__init__.py +0 -1
- agenta/sdk/agenta_decorator.py +3 -11
- agenta/sdk/agenta_init.py +1 -3
- agenta/sdk/tracing/llm_tracing.py +18 -35
- agenta/sdk/types.py +0 -38
- {agenta-0.13.0.dist-info → agenta-0.13.0a0.dist-info}/METADATA +96 -46
- agenta-0.13.0a0.dist-info/RECORD +161 -0
- agenta-0.13.0.dist-info/RECORD +0 -161
- {agenta-0.13.0.dist-info → agenta-0.13.0a0.dist-info}/WHEEL +0 -0
- {agenta-0.13.0.dist-info → agenta-0.13.0a0.dist-info}/entry_points.txt +0 -0
agenta/sdk/types.py
CHANGED
|
@@ -127,44 +127,6 @@ class MultipleChoiceParam(str):
|
|
|
127
127
|
)
|
|
128
128
|
|
|
129
129
|
|
|
130
|
-
class GroupedMultipleChoiceParam(str):
|
|
131
|
-
def __new__(cls, default: str = None, choices: Dict[str, List[str]] = None):
|
|
132
|
-
if choices is None:
|
|
133
|
-
choices = {}
|
|
134
|
-
|
|
135
|
-
if default and not any(default in choices for choices in choices.values()):
|
|
136
|
-
if not choices:
|
|
137
|
-
print(
|
|
138
|
-
f"Warning: Default value {default} provided but choices are empty."
|
|
139
|
-
)
|
|
140
|
-
else:
|
|
141
|
-
raise ValueError(
|
|
142
|
-
f"Default value {default} is not in the provided choices"
|
|
143
|
-
)
|
|
144
|
-
|
|
145
|
-
if not default:
|
|
146
|
-
for choices in choices.values():
|
|
147
|
-
if choices:
|
|
148
|
-
default = choices[0]
|
|
149
|
-
break
|
|
150
|
-
|
|
151
|
-
instance = super().__new__(cls, default)
|
|
152
|
-
instance.choices = choices
|
|
153
|
-
instance.default = default
|
|
154
|
-
return instance
|
|
155
|
-
|
|
156
|
-
@classmethod
|
|
157
|
-
def __modify_schema__(cls, field_schema: dict[str, Any], **kwargs):
|
|
158
|
-
choices = kwargs.get("choices", {})
|
|
159
|
-
field_schema.update(
|
|
160
|
-
{
|
|
161
|
-
"x-parameter": "grouped_choice",
|
|
162
|
-
"type": "string",
|
|
163
|
-
"choices": choices,
|
|
164
|
-
}
|
|
165
|
-
)
|
|
166
|
-
|
|
167
|
-
|
|
168
130
|
class Message(BaseModel):
|
|
169
131
|
role: str
|
|
170
132
|
content: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: agenta
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.0a0
|
|
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
|
|
40
|
-
<source
|
|
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" >
|
|
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>
|
|
52
|
-
The open-source
|
|
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.
|
|
53
53
|
</div>
|
|
54
54
|
</br>
|
|
55
55
|
<p align="center">
|
|
@@ -68,6 +68,7 @@ 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
|
+
|
|
71
72
|
</br>
|
|
72
73
|
</p>
|
|
73
74
|
|
|
@@ -89,7 +90,7 @@ Description-Content-Type: text/markdown
|
|
|
89
90
|
|
|
90
91
|
<a href="https://cloud.agenta.ai">
|
|
91
92
|
<picture>
|
|
92
|
-
<img src="https://github.com/Agenta-AI/agenta/assets/4510758/
|
|
93
|
+
<img src="https://github.com/Agenta-AI/agenta/assets/4510758/a3024fac-2945-4208-ae12-4cc51ecfc970" />
|
|
93
94
|
</picture>
|
|
94
95
|
</a>
|
|
95
96
|
|
|
@@ -99,8 +100,8 @@ Description-Content-Type: text/markdown
|
|
|
99
100
|
<br />
|
|
100
101
|
<div align="center" >
|
|
101
102
|
<picture >
|
|
102
|
-
<source
|
|
103
|
-
<source
|
|
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" >
|
|
104
105
|
<img alt="Mockup agenta" src="https://github.com/Agenta-AI/agenta/assets/4510758/ae9cf11f-8ef9-4b67-98c7-4a40341fa87a" >
|
|
105
106
|
</picture>
|
|
106
107
|
</div>
|
|
@@ -112,75 +113,126 @@ Description-Content-Type: text/markdown
|
|
|
112
113
|
---
|
|
113
114
|
|
|
114
115
|
<h3 align="center">
|
|
116
|
+
<a href="#ℹ️-about"><b>About</b></a> •
|
|
115
117
|
<a href="#quick-start"><b>Quick Start</b></a> •
|
|
118
|
+
<a href="https://docs.agenta.ai/installation"><b>Installation</b></a> •
|
|
116
119
|
<a href="#features"><b>Features</b></a> •
|
|
117
120
|
<a href="https://docs.agenta.ai"><b>Documentation</b></a> •
|
|
118
121
|
<a href="#enterprise-support"><b>Enterprise</b></a> •
|
|
119
|
-
<a href="https://
|
|
120
|
-
<a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA"><b>Join Our Slack</b></a> •
|
|
122
|
+
<a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA"><b>Community</b></a> •
|
|
121
123
|
<a href="#contributing"><b>Contributing</b></a>
|
|
122
124
|
</h3>
|
|
123
125
|
|
|
124
126
|
---
|
|
125
127
|
|
|
126
|
-
#
|
|
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:
|
|
128
|
+
# ℹ️ About
|
|
133
129
|
|
|
134
|
-
-
|
|
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.
|
|
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.
|
|
140
131
|
|
|
141
|
-
|
|
132
|
+
Agenta allows developers and product teams to collaborate and build robust AI applications in less time.
|
|
142
133
|
|
|
143
|
-
|
|
144
|
-
- Chain of prompts
|
|
145
|
-
- RAG
|
|
146
|
-
- Agents
|
|
147
|
-
- ...
|
|
134
|
+
## 🔨 How does it work?
|
|
148
135
|
|
|
149
|
-
|
|
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. |
|
|
150
139
|
|
|
151
|
-
|
|
140
|
+
<br /><br />
|
|
152
141
|
|
|
153
142
|
# Quick Start
|
|
154
143
|
|
|
155
|
-
### [
|
|
156
|
-
### [
|
|
157
|
-
### [Create
|
|
158
|
-
### [Create an application using Langchain](https://docs.agenta.ai/tutorials/first-app-with-langchain)
|
|
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)
|
|
159
147
|
### [Self-host agenta](https://docs.agenta.ai/self-host/host-locally)
|
|
148
|
+
### [Read the Documentation](https://docs.agenta.ai)
|
|
160
149
|
### [Check the Cookbook](https://docs.agenta.ai/cookbook)
|
|
161
150
|
|
|
162
151
|
# Features
|
|
163
152
|
|
|
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
|
+

|
|
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
|
+

|
|
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">
|
|
164
222
|
|
|
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/> |
|
|
170
223
|
|
|
171
224
|
# Enterprise Support
|
|
172
225
|
Contact us here for enterprise support and early access to agenta self-managed enterprise with Kubernetes support. <br/><br/>
|
|
173
226
|
<a href="https://cal.com/mahmoud-mabrouk-ogzgey/demo"><img src="https://cal.com/book-with-cal-dark.svg" alt="Book us"></a>
|
|
174
227
|
|
|
175
228
|
# 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.
|
|
177
229
|
|
|
178
|
-
To disable anonymized telemetry,
|
|
230
|
+
To disable anonymized telemetry, set the following environment variable:
|
|
179
231
|
|
|
180
232
|
- For web: Set `TELEMETRY_TRACKING_ENABLED` to `false` in your `agenta-web/.env` file.
|
|
181
233
|
- For CLI: Set `telemetry_tracking_enabled` to `false` in your `~/.agenta/config.toml` file.
|
|
182
234
|
|
|
183
|
-
After making this change, restart
|
|
235
|
+
After making this change, restart agenta compose.
|
|
184
236
|
|
|
185
237
|
# Contributing
|
|
186
238
|
|
|
@@ -193,7 +245,7 @@ Check out our [Contributing Guide](https://docs.agenta.ai/contributing/getting-s
|
|
|
193
245
|
## Contributors ✨
|
|
194
246
|
|
|
195
247
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
196
|
-
[](#contributors-)
|
|
197
249
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
198
250
|
|
|
199
251
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
@@ -253,8 +305,6 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
253
305
|
<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>
|
|
254
306
|
<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>
|
|
255
307
|
<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>
|
|
258
308
|
</tr>
|
|
259
309
|
</tbody>
|
|
260
310
|
</table>
|
|
@@ -0,0 +1,161 @@
|
|
|
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,,
|