agenta 0.24.2a1__py3-none-any.whl → 0.24.3__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.

@@ -34,11 +34,11 @@ class CreateSpan(UniversalBaseModel):
34
34
 
35
35
  if IS_PYDANTIC_V2:
36
36
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(
37
- extra="allow", frozen=True
37
+ extra="allow", frozen=False
38
38
  ) # type: ignore # Pydantic v2
39
39
  else:
40
40
 
41
41
  class Config:
42
- frozen = True
42
+ frozen = False
43
43
  smart_union = True
44
44
  extra = pydantic.Extra.allow
@@ -199,7 +199,9 @@ class Tracing(metaclass=SingletonMeta):
199
199
  def is_trace_ready(self):
200
200
  tracing = tracing_context.get()
201
201
 
202
- are_spans_ready = [span.end_time is not None for span in tracing.spans.values()]
202
+ are_spans_ready = [
203
+ (span.end_time == span.start_time) for span in tracing.spans.values()
204
+ ]
203
205
 
204
206
  return all(are_spans_ready)
205
207
 
@@ -253,6 +255,8 @@ class Tracing(metaclass=SingletonMeta):
253
255
  logging.info(f"Opening span {span_id} {spankind.upper()}")
254
256
 
255
257
  ### --- TO BE CLEANED --- >>>
258
+ now = datetime.now(timezone.utc)
259
+
256
260
  span = CreateSpan(
257
261
  id=span_id,
258
262
  inputs=input,
@@ -261,13 +265,13 @@ class Tracing(metaclass=SingletonMeta):
261
265
  config=config,
262
266
  spankind=spankind.upper(),
263
267
  attributes={},
264
- status=SpanStatusCode.UNSET.value,
265
- start_time=datetime.now(timezone.utc),
268
+ status="UNSET",
269
+ start_time=now,
266
270
  internals=None,
267
271
  outputs=None,
268
272
  tags=None,
269
273
  user=None,
270
- end_time=None,
274
+ end_time=now,
271
275
  tokens=None,
272
276
  cost=None,
273
277
  token_consumption=None,
@@ -457,18 +461,12 @@ class Tracing(metaclass=SingletonMeta):
457
461
  trace["trace_id"] = tracing.trace_id
458
462
 
459
463
  for span in tracing.spans.values():
460
- if span.end_time is None:
461
- span.end_time = span.start_time
462
-
463
464
  if span.parent_span_id is None:
464
465
  trace["cost"] = span.cost
465
466
  trace["usage"] = (
466
467
  None if span.tokens is None else json.loads(span.tokens.json())
467
468
  )
468
- trace["latency"] = (
469
- (span.end_time if span.end_time else span.start_time)
470
- - span.start_time
471
- ).total_seconds()
469
+ trace["latency"] = (span.end_time - span.start_time).total_seconds()
472
470
 
473
471
  spans = (
474
472
  []
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agenta
3
- Version: 0.24.2a1
3
+ Version: 0.24.3
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
@@ -34,7 +34,21 @@ Project-URL: Documentation, https://docs.agenta.ai
34
34
  Project-URL: Repository, https://github.com/agenta-ai/agenta
35
35
  Description-Content-Type: text/markdown
36
36
 
37
+ <div align="center" style="margin: 30px">
38
+ <a href="https://docs.agenta.ai/self-host/migration/migration-to-postgres">
39
+ Important: We are migrating from MongoDB to PostgreSQL in v0.19! Follow this guide to migrate your data.
40
+ </a>
41
+ </div>
42
+ </br>
43
+ </br>
44
+
37
45
  <div align="center" style="margin: 30px">
46
+ <div>
47
+ <a href="https://agentaai.notion.site/Careers-at-agenta-fb8a76d4d9044e27bd3a32678818dbc8/">
48
+ <img src="https://github.com/Agenta-AI/agenta/raw/main/.github/images/we-are-hiring.svg" alt="We are hiring! Join our team!" width="350" height="60" alt="We are hiring! Join our team!" width="350" height="60">
49
+ </a>
50
+ </div>
51
+
38
52
  <a href="https://agenta.ai/">
39
53
  <div align="center" >
40
54
  <picture >
@@ -73,7 +87,6 @@ Description-Content-Type: text/markdown
73
87
  </br>
74
88
  </p>
75
89
 
76
-
77
90
  <p align="center">
78
91
  <a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA">
79
92
  <img src="https://img.shields.io/badge/JOIN US ON SLACK-4A154B?style=for-the-badge&logo=slack&logoColor=white" />
@@ -86,7 +99,6 @@ Description-Content-Type: text/markdown
86
99
  </a>
87
100
  </p>
88
101
 
89
-
90
102
  </br>
91
103
 
92
104
  <a href="https://cloud.agenta.ai">
@@ -95,7 +107,6 @@ Description-Content-Type: text/markdown
95
107
  </picture>
96
108
  </a>
97
109
 
98
-
99
110
  <br>
100
111
  <br />
101
112
  <br />
@@ -127,54 +138,58 @@ Description-Content-Type: text/markdown
127
138
 
128
139
  # ⭐️ Why Agenta?
129
140
 
130
- 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.
141
+ 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.
131
142
 
132
- Agenta allows developers and product teams to collaborate in building production-grade LLM-powered applications in less time.
143
+ Agenta allows developers and product teams to collaborate in building production-grade LLM-powered applications in less time.
133
144
 
134
145
  ### With Agenta, you can:
135
146
 
136
- - [🧪 **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...)
137
- - ✍️ Collect and [**annotate golden test sets**](https://docs.agenta.ai/basic_guides/test_sets) for evaluation
138
- - 📈 [**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)
139
- - [🔍 **Annotate** and **A/B test**](https://docs.agenta.aibasic_guides/human_evaluation) your applications with **human feedback**
140
- - [🤝 **Collaborate with product teams**](https://docs.agenta.ai/basic_guides/team_management) for prompt engineering and evaluation
141
- - [🚀 **Deploy your application**](https://docs.agenta.ai/basic_guides/deployment) in one-click in the UI, through CLI, or through github workflows.
147
+ - [🧪 **Experiment** and **compare** prompts](https://docs.agenta.ai/prompt_management/prompt_engineering) on [any LLM workflow](https://docs.agenta.ai/prompt_management/setting_up/custom_applications) (chain-of-prompts, Retrieval Augmented Generation (RAG), LLM agents...)
148
+ - ✍️ Collect and [**annotate golden test sets**](https://docs.agenta.ai/evaluation/test_sets) for evaluation
149
+ - 📈 [**Evaluate** your application](https://docs.agenta.ai/evaluation/automatic_evaluation) with pre-existing or [**custom evaluators**](https://docs.agenta.ai/evaluation/custom_evaluator)
150
+ - [🔍 **Annotate** and **A/B test**](https://docs.agenta.ai/evaluation/human_evaluation) your applications with **human feedback**
151
+ - [🤝 **Collaborate with product teams**](https://docs.agenta.ai/misc/team_management) for prompt engineering and evaluation
152
+ - [🚀 **Deploy your application**](https://docs.agenta.ai/prompt_management/deployment) in one-click in the UI, through CLI, or through github workflows.
142
153
 
143
154
  ### Works with any LLM app workflow
144
155
 
145
156
  Agenta enables prompt engineering and evaluation on any LLM app architecture:
157
+
146
158
  - Chain of prompts
147
159
  - RAG
148
160
  - Agents
149
- - ...
150
-
151
- It works with any framework such as [Langchain](https://langchain.com), [LlamaIndex](https://www.llamaindex.ai/) and any LLM provider (openAI, Cohere, Mistral).
152
161
 
153
- [Jump here to see how to use your own custom application with agenta](/advanced_guides/custom_applications)
162
+ It works with any framework such as [Langchain](https://www.langchain.com/), [LlamaIndex](https://www.llamaindex.ai/) and any LLM provider (openAI, Cohere, Mistral).
154
163
 
155
164
  # Quick Start
156
165
 
157
166
  ### [Get started for free](https://cloud.agenta.ai?utm_source=github&utm_medium=readme&utm_campaign=github)
158
- ### [Explore the Docs](https://docs.agenta.ai)
159
- ### [Create your first application in one-minute](https://docs.agenta.ai/quickstart/getting-started-ui)
160
- ### [Create an application using Langchain](https://docs.agenta.ai/tutorials/first-app-with-langchain)
167
+
168
+ ### [Explore the Docs](https://docs.agenta.ai/)
169
+
170
+ ### [Create your first application in one-minute](https://docs.agenta.ai/getting_started/quick-start)
171
+
172
+ ### [Create an application using Langchain](https://docs.agenta.ai/guides/tutorials/first-app-with-langchain)
173
+
161
174
  ### [Self-host agenta](https://docs.agenta.ai/self-host/host-locally)
162
- ### [Check the Cookbook](https://docs.agenta.ai/cookbook)
163
175
 
164
- # Features
176
+ ### [Check the Cookbook](https://docs.agenta.ai/guides/cookbooks/evaluations_with_sdk)
165
177
 
178
+ # Features
166
179
 
167
- | Playground | Evaluation |
168
- | ------- | ------- |
169
- | 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%;">|
170
- | Human annotation | Deployment |
171
- | 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) |
180
+ | Playground | Evaluation |
181
+ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
182
+ | 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%;"> |
183
+ | Human annotation | Deployment |
184
+ | 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) |
172
185
 
173
186
  # Enterprise Support
187
+
174
188
  Contact us here for enterprise support and early access to agenta self-managed enterprise with Kubernetes support. <br/><br/>
175
189
  <a href="https://cal.com/mahmoud-mabrouk-ogzgey/demo"><img src="https://cal.com/book-with-cal-dark.svg" alt="Book us"></a>
176
190
 
177
191
  # Disabling Anonymized Tracking
192
+
178
193
  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.
179
194
 
180
195
  To disable anonymized telemetry, follow these steps:
@@ -184,18 +199,24 @@ To disable anonymized telemetry, follow these steps:
184
199
 
185
200
  After making this change, restart Agenta Compose.
186
201
 
202
+ # ⭐️ Join Our Team
203
+
204
+ - [Founding Product Engineer Frontend](https://agentaai.notion.site/Founding-Product-Engineer-Frontend-b6d26a3e9b254be6b6c2bfffbf0b53c5)
205
+
187
206
  # Contributing
188
207
 
189
208
  We warmly welcome contributions to Agenta. Feel free to submit issues, fork the repository, and send pull requests.
190
209
 
191
210
  We are usually hanging in our Slack. Feel free to [join our Slack and ask us anything](https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA)
192
211
 
193
- Check out our [Contributing Guide](https://docs.agenta.ai/contributing/getting-started) for more information.
212
+ Check out our [Contributing Guide](https://docs.agenta.ai/misc/contributing/getting-started) for more information.
194
213
 
195
214
  ## Contributors ✨
196
215
 
197
216
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
198
- [![All Contributors](https://img.shields.io/badge/all_contributors-41-orange.svg?style=flat-square)](#contributors-)
217
+
218
+ [![All Contributors](https://img.shields.io/badge/all_contributors-48-orange.svg?style=flat-square)](#contributors-)
219
+
199
220
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
200
221
 
201
222
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -257,6 +278,15 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
257
278
  <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>
258
279
  <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>
259
280
  <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>
281
+ <td align="center" valign="top" width="14.28%"><a href="https://speakerdeck.com/eltociear"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=100" width="100px;" alt="Ikko Eltociear Ashimine"/><br /><sub><b>Ikko Eltociear Ashimine</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=eltociear" title="Documentation">📖</a></td>
282
+ </tr>
283
+ <tr>
284
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/vishalvanpariya"><img src="https://avatars.githubusercontent.com/u/27823328?v=4?s=100" width="100px;" alt="Vishal Vanpariya"/><br /><sub><b>Vishal Vanpariya</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=vishalvanpariya" title="Code">💻</a></td>
285
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/youcefs21"><img src="https://avatars.githubusercontent.com/u/34604972?v=4?s=100" width="100px;" alt="Youcef Boumar"/><br /><sub><b>Youcef Boumar</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=youcefs21" title="Documentation">📖</a></td>
286
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/LucasTrg"><img src="https://avatars.githubusercontent.com/u/47852577?v=4?s=100" width="100px;" alt="LucasTrg"/><br /><sub><b>LucasTrg</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=LucasTrg" title="Code">💻</a> <a href="https://github.com/Agenta-AI/agenta/issues?q=author%3ALucasTrg" title="Bug reports">🐛</a></td>
287
+ <td align="center" valign="top" width="14.28%"><a href="https://ashrafchowdury.me"><img src="https://avatars.githubusercontent.com/u/87828904?v=4?s=100" width="100px;" alt="Ashraf Chowdury"/><br /><sub><b>Ashraf Chowdury</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/issues?q=author%3Aashrafchowdury" title="Bug reports">🐛</a> <a href="https://github.com/Agenta-AI/agenta/commits?author=ashrafchowdury" title="Code">💻</a></td>
288
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/jp-agenta"><img src="https://avatars.githubusercontent.com/u/174311389?v=4?s=100" width="100px;" alt="jp-agenta"/><br /><sub><b>jp-agenta</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/commits?author=jp-agenta" title="Code">💻</a> <a href="https://github.com/Agenta-AI/agenta/issues?q=author%3Ajp-agenta" title="Bug reports">🐛</a></td>
289
+ <td align="center" valign="top" width="14.28%"><a href="https://mrunhap.github.io"><img src="https://avatars.githubusercontent.com/u/24653356?v=4?s=100" width="100px;" alt="Mr Unhappy"/><br /><sub><b>Mr Unhappy</b></sub></a><br /><a href="https://github.com/Agenta-AI/agenta/issues?q=author%3Amrunhap" title="Bug reports">🐛</a> <a href="#infra-mrunhap" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
260
290
  </tr>
261
291
  </tbody>
262
292
  </table>
@@ -56,7 +56,7 @@ agenta/client/backend/types/body_import_testset.py,sha256=J-AH8SkA6mWgNZ5vIz12xp
56
56
  agenta/client/backend/types/config_db.py,sha256=nCM_3WKTCP3zko26wys5wTSn2cun9OYclwMp_vY5qjE,666
57
57
  agenta/client/backend/types/correct_answer.py,sha256=khEHspf9nszpzhswc7rSruCrcmvVdHFm7ti8JRdpXyI,592
58
58
  agenta/client/backend/types/create_app_output.py,sha256=0_avs1u3pIU14P5ut1WOUrravDwpg2GkSj8kYsAMK9Y,600
59
- agenta/client/backend/types/create_span.py,sha256=IKpkEmZiK_D6xot-pQYGKbbD5iOGRvuew9ikY-7EQpo,1565
59
+ agenta/client/backend/types/create_span.py,sha256=ka5f5ia8N_VjlSqdkapbDGaYobdqfduKCLNP6clbPig,1567
60
60
  agenta/client/backend/types/create_trace_response.py,sha256=Pr1NM9nLHiPVzCP8m7VQ1NIb92fOhJTmMlEUK6FrykI,643
61
61
  agenta/client/backend/types/docker_env_vars.py,sha256=td2vhkHyYCwIC_TjlUu7hDuIXsfSJH2L7J_wGaNvw_c,600
62
62
  agenta/client/backend/types/environment_output.py,sha256=BuQNgdo07gAlHgC8RSV3Aq-IRpSwi3jai-jbyrTi8OQ,913
@@ -144,7 +144,7 @@ agenta/sdk/decorators/tracing.py,sha256=e0olx2EEdjXY0NqpIoDJSVxCnUmv0woewTUuCJXy
144
144
  agenta/sdk/router.py,sha256=0sbajvn5C7t18anH6yNo7-oYxldHnYfwcbmQnIXBePw,269
145
145
  agenta/sdk/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
146
  agenta/sdk/tracing/callbacks.py,sha256=ug9xeXLgJEpx4l3x1BrJD2bFrH83I3kajlGsU8WtG4U,7699
147
- agenta/sdk/tracing/llm_tracing.py,sha256=R_EBG9-anIGlxPNZcFHATh3O7SEmIUjf0ZGtiK6eFO4,18116
147
+ agenta/sdk/tracing/llm_tracing.py,sha256=5EeIuRu2wgGknlsZD-AkuJH_gOBrmsrCrWK0-h0Uov0,17941
148
148
  agenta/sdk/tracing/logger.py,sha256=GfH7V-jBHcn7h5dbdrnkDMe_ml3wkXFBeoQiqR4KVRc,474
149
149
  agenta/sdk/tracing/tasks_manager.py,sha256=FBSFOWIKBycyA4ShB2ZVMzrzYQ8pWGWWBClFX8nlZFA,3726
150
150
  agenta/sdk/tracing/tracing_context.py,sha256=nt3ewa-TK9BRJviGIZYazsAQUiG4daWxjtsbjeaDprs,789
@@ -169,7 +169,7 @@ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR
169
169
  agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
170
170
  agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
171
171
  agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
172
- agenta-0.24.2a1.dist-info/METADATA,sha256=FXUIOTkixRaNN7vzg4Am9xWdtchfOnFGAzyICo5Thc4,26501
173
- agenta-0.24.2a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
174
- agenta-0.24.2a1.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
175
- agenta-0.24.2a1.dist-info/RECORD,,
172
+ agenta-0.24.3.dist-info/METADATA,sha256=auW-ybVis52cWSp6lnDUzkgn7_UzWKpQdmFJUQYiXSE,31481
173
+ agenta-0.24.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
174
+ agenta-0.24.3.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
175
+ agenta-0.24.3.dist-info/RECORD,,