agenta 0.39.3__py3-none-any.whl → 0.40.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of agenta might be problematic. Click here for more details.

@@ -297,7 +297,9 @@ class instrument: # pylint: disable=invalid-name
297
297
  not in (
298
298
  ignore
299
299
  if isinstance(ignore, list)
300
- else io.keys() if ignore is True else []
300
+ else io.keys()
301
+ if ignore is True
302
+ else []
301
303
  )
302
304
  }
303
305
 
@@ -103,19 +103,63 @@ def _encode_key(
103
103
  return f"ag.{namespace}.{key}"
104
104
 
105
105
 
106
- def _encode_value(
107
- value: Any,
108
- ) -> Optional[Attribute]:
106
+ def _make_serializable(value: Any) -> Any:
107
+ """
108
+ Transform complex nested structures into JSON-serializable form.
109
+ Handles Pydantic models, nested dictionaries and lists recursively.
110
+ """
111
+ if value is None or isinstance(value, (str, int, float, bool, bytes)):
112
+ return value
113
+
114
+ # Handle Pydantic objects (prioritize v2 over v1 API)
115
+ if hasattr(value, "model_dump"): # Pydantic v2
116
+ return value.model_dump()
117
+ elif hasattr(value, "dict"): # Pydantic v1
118
+ return value.dict()
119
+
120
+ if isinstance(value, dict):
121
+ try:
122
+ # Test serialization without modifying - optimizes for already-serializable dicts
123
+ dumps(
124
+ value
125
+ ) # If serialization fails, we'll catch the exception and process deeply
126
+ return value # Avoid unnecessary recursion for serializable dicts
127
+ except TypeError:
128
+ return {k: _make_serializable(v) for k, v in value.items()}
129
+ elif isinstance(value, list):
130
+ try:
131
+ # Test serialization without modifying - optimizes for already-serializable lists
132
+ dumps(
133
+ value
134
+ ) # If serialization fails, we'll catch the exception and process deeply
135
+ return value # Avoid unnecessary recursion for serializable lists
136
+ except TypeError:
137
+ return [_make_serializable(item) for item in value]
138
+
139
+ return repr(value)
140
+
141
+
142
+ def _encode_value(value: Any) -> Optional[Attribute]:
143
+ """
144
+ Encode values for tracing, ensuring proper JSON serialization.
145
+ Adds the @ag.type=json: prefix only to appropriate values.
146
+ """
109
147
  if value is None:
110
148
  return None
111
149
 
112
150
  if isinstance(value, (str, int, float, bool, bytes)):
113
151
  return value
114
152
 
115
- if isinstance(value, dict) or isinstance(value, list):
116
- encoded = dumps(value)
117
- value = "@ag.type=json:" + encoded
118
- return value
153
+ try:
154
+ if (
155
+ isinstance(value, (dict, list))
156
+ or hasattr(value, "model_dump")
157
+ or hasattr(value, "dict")
158
+ ):
159
+ serializable_value = _make_serializable(value)
160
+ return "@ag.type=json:" + dumps(serializable_value)
161
+ except TypeError:
162
+ pass
119
163
 
120
164
  return repr(value)
121
165
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: agenta
3
- Version: 0.39.3
3
+ Version: 0.40.0
4
4
  Summary: The SDK for agenta is an open-source LLMOps platform.
5
5
  Keywords: LLMOps,LLM,evaluation,prompt engineering
6
6
  Author: Mahmoud Mabrouk
@@ -33,6 +33,7 @@ Project-URL: Homepage, https://agenta.ai
33
33
  Project-URL: Repository, https://github.com/agenta-ai/agenta
34
34
  Description-Content-Type: text/markdown
35
35
 
36
+
36
37
  <p align="center">
37
38
  <a href="https://agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
38
39
  <picture >
@@ -41,33 +42,45 @@ Description-Content-Type: text/markdown
41
42
  <img alt="Shows the logo of agenta" src="https://github.com/Agenta-AI/agenta/assets/4510758/68e055d4-d7b8-4943-992f-761558c64253" >
42
43
  </picture>
43
44
  </a>
44
- </p>
45
- <p align="center">
46
- <a href="https://docs.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">Documentation</a> |
47
- <a href="https://agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">Website</a> |
48
- <a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ">Slack</a>
49
- </p>
50
45
  <div align="center">
51
- <strong> <h1> The Open source LLMOps Platform </h1></strong>
52
- Prompt playground, prompt management, evaluation, and observability
46
+ <strong> <h1> The Open-source LLMOps Platform </h1></strong>
47
+ Build reliable LLM applications faster with integrated prompt management, evaluation, and observability.
53
48
  </div>
54
- </br>
49
+ <br />
50
+ <div align="center" >
51
+ <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
52
+ <picture >
53
+ <source media="(prefers-color-scheme: dark)" srcset="https://imagedelivery.net/UNvjPBCIZFONpkVPQTxVuA/9a4fde42-c96c-4ec2-b8d1-c8c0e3851a00/large" >
54
+ <source media="(prefers-color-scheme: light)" srcset="https://imagedelivery.net/UNvjPBCIZFONpkVPQTxVuA/98140352-14c0-4db1-bafb-a1e8d271d500/large" >
55
+ <img alt="Shows the logo of agenta" src="https://imagedelivery.net/UNvjPBCIZFONpkVPQTxVuA/98140352-14c0-4db1-bafb-a1e8d271d500/large" >
56
+ </picture>
57
+ </a>
58
+ </div>
59
+ </div>
60
+
61
+ ---
62
+
63
+ <h3 align="center">
64
+ <a href="https://docs.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme"><b>Documentation</b></a> &bull;
65
+ <a href="https://agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme"><b>Website</b></a> &bull;
66
+ <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme"><b>Agenta Cloud</b></a>
67
+ </h3>
68
+
69
+ ---
70
+
55
71
  <p align="center">
56
72
  <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT license." />
57
73
  <a href="https://docs.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
58
74
  <img src="https://img.shields.io/badge/Doc-online-green" alt="Doc">
59
75
  </a>
60
-
61
76
  <a href="https://github.com/Agenta-AI/agenta/blob/main/CONTRIBUTING.md">
62
77
  <img src="https://img.shields.io/badge/PRs-Welcome-brightgreen" alt="PRs welcome" />
63
78
  </a>
64
79
  <img src="https://img.shields.io/github/contributors/Agenta-AI/agenta" alt="Contributors">
65
- <img src="https://img.shields.io/github/last-commit/Agenta-AI/agenta" alt="Last Commit">
66
- <img src="https://img.shields.io/github/commit-activity/m/agenta-ai/agenta" alt="Commits per month">
67
-
68
80
  <a href="https://pypi.org/project/agenta/">
69
81
  <img src="https://img.shields.io/pypi/dm/agenta" alt="PyPI - Downloads">
70
82
  </a>
83
+ <img src="https://img.shields.io/github/last-commit/Agenta-AI/agenta" alt="Last Commit">
71
84
  </br>
72
85
  </p>
73
86
 
@@ -83,70 +96,74 @@ Description-Content-Type: text/markdown
83
96
  </a>
84
97
  </p>
85
98
 
86
- <br />
87
99
  <p align="center">
88
100
  <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
89
101
  <picture >
90
- <source width="275" media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/b8912ecb-c7a0-47bd-8507-29b12382fef6" >
91
- <source width="275" media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/f133dd08-04a3-4b20-b047-22f8f841cfbb" >
92
- <img alt="Try Agenta Live Demo" src="https://github.com/Agenta-AI/agenta/assets/4510758/68e055d4-d7b8-4943-992f-761558c64253" >
102
+ <source width="200" media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/a2069e7b-c3e0-4a5e-9e41-8ddc4660d1f2" >
103
+ <source width="200" media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/a2069e7b-c3e0-4a5e-9e41-8ddc4660d1f2" >
104
+ <img alt="Try Agenta Live Demo" src="https://github.com/user-attachments/assets/a2069e7b-c3e0-4a5e-9e41-8ddc4660d1f2" >
93
105
  </picture>
94
106
  </a>
95
107
  </p>
96
108
 
97
- <br/>
98
- <br />
99
- <div align="center" >
100
- <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
101
- <picture >
102
- <img width="800" alt="Screenshot Agenta" src="https://github.com/user-attachments/assets/32e95ddb-e001-4462-b92e-72bf4cc78597" >
103
- </picture>
104
- </a>
105
- </div>
106
- </div>
107
- <br />
108
- <br />
109
-
110
109
  ---
111
110
 
112
- <h3 align="center">
113
- <a href="https://docs.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme"><b>Documentation</b></a> &bull;
114
- <a href="https://docs.agenta.ai/changelog/main?utm_source=github&utm_medium=referral&utm_campaign=readme"><b>Changelog</b></a> &bull;
115
- <a href="https://agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme"><b>Website</b></a> &bull;
116
- <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme"><b>Agenta Cloud</b></a>
111
+ ## What is Agenta?
117
112
 
118
- </h3>
113
+ Agenta is a platform for building production-grade LLM applications. It helps **engineering** and **product teams** create reliable LLM apps faster through integrated prompt management, evaluation, and observability.
119
114
 
120
- ---
115
+ ## Core Features
121
116
 
122
- ## What is Agenta?
117
+ ### 🧪 Prompt Engineering & Management
118
+ Collaborate with Subject Matter Experts (SMEs) on prompt engineering and make sure nothing breaks in production.
123
119
 
124
- Agenta is a platform for building production-grade LLM applications. It helps **engineering and product teams** create reliable LLM apps faster.
120
+ - **Interactive Playground**: Compare prompts side by side against your test cases
121
+ - **Multi-Model Support**: Experiment with 50+ LLM models or [bring-your-own models](https://docs.agenta.ai/prompt-management/adding-custom-providers?utm_source=github&utm_medium=referral&utm_campaign=readme)
122
+ - **Version Control**: Version prompts and configurations with branching and environments
123
+ - **Complex Configurations**: Enable SMEs to collaborate on [complex configuration schemas](https://docs.agenta.ai/custom-workflows/overview?utm_source=github&utm_medium=referral&utm_campaign=readme) beyond simple prompts
125
124
 
125
+ [Explore prompt management →](https://docs.agenta.ai/prompt-management/overview?utm_source=github&utm_medium=referral&utm_campaign=readme)
126
126
 
127
- Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LLM playground**, **evaluation**), deploying (**prompt and configuration management**), and monitoring (**LLM observability and tracing**).
127
+ ### 📊 Evaluation & Testing
128
+ Evaluate your LLM applications systematically with both human and automated feedback.
129
+ - **Flexible Test Sets**: Create test cases from production data, playground experiments, or upload CSVs
130
+ - **Pre-built and Custom Evaluators**: Use LLM-as-judge, one of our 20+ pre-built evaluators, or you custom evaluators
131
+ - **UI and API Access**: Run evaluations via UI (for SMEs) or programmatically (for engineers)
132
+ - **Human Feedback Integration**: Collect and incorporate expert annotations
128
133
 
129
- ## Features
130
- - **Prompt Playground**: Experiment, iterate on prompts, and compare outputs from over 50 LLM models side by side ([docs](https://docs.agenta.ai/prompt-management/using-the-playground?utm_source=github&utm_medium=referral&utm_campaign=readme))
131
- - **Custom Workflows**: Build a playground for any custom LLM workflow, such as RAG or agents. Enable all the team to easily iterate on its parameters and evaluate it from the web UI.
132
- - **LLM evaluation**: Run evaluation suite from the webUI using predefined evaluators like LLM-as-a-judge, RAG evaluators, or custom code evaluators. ([docs](https://docs.agenta.ai/evaluation/overview?utm_source=github&utm_medium=referral&utm_campaign=readme))
133
- - **Human evaluation**: Collaborate with subject matter experts for human annotation evaluation, including A/B testing and annotating golden test sets.
134
- - **Prompt Management**: Version your prompts and manage them across different environments ([docs](https://docs.agenta.ai/prompt-management/overview?utm_source=github&utm_medium=referral&utm_campaign=readme), [quick start](https://docs.agenta.ai/prompt-management/quick-start?utm_source=github&utm_medium=referral&utm_campaign=readme))
135
- - **LLM Tracing**: Observe and debug your apps with integrations to most providers and frameworks ([docs](https://docs.agenta.ai/observability/overview?utm_source=github&utm_medium=referral&utm_campaign=readme), [quick start](https://docs.agenta.ai/observability/quickstart?utm_source=github&utm_medium=referral&utm_campaign=readme))
136
- - **LLM Monitoring**: Track cost and latency and compare different deployments.
134
+ [Explore evaluation frameworks →](https://docs.agenta.ai/evaluation/overview?utm_source=github&utm_medium=referral&utm_campaign=readme)
137
135
 
138
-
139
- ## Getting Started
140
- ### Agenta Cloud:
141
- The easiest way to get started is through Agenta Cloud. It is free to signup, and comes with a generous free-tier.
136
+ ### 📡 Observability & Monitoring
137
+ Get visibility into your LLM applications in production.
138
+ - **Cost & Performance Tracking**: Monitor spending, latency, and usage patterns
139
+ - **Tracing**: Debug complex workflows with detailed traces
140
+ - **Open Standards**: OpenTelemetry native tracing compatible with OpenLLMetry, and OpenInference
141
+ - **Integrations**: Comes with pre-built integrations for most models and frameworks
142
+
143
+ [Learn about observability →](https://docs.agenta.ai/observability/overview?utm_source=github&utm_medium=referral&utm_campaign=readme)
144
+
145
+ ## 📸 Screenshots
142
146
 
147
+ <img alt="Playground" src="https://imagedelivery.net/UNvjPBCIZFONpkVPQTxVuA/e7d16967-d564-4148-3615-03bfe2a29d00/large" />
148
+ <img alt="Prompt Management" src="https://imagedelivery.net/UNvjPBCIZFONpkVPQTxVuA/b4210a13-b41e-4dfd-d383-4286fb011e00/large" />
149
+ <img alt="Evaluation" src="https://imagedelivery.net/UNvjPBCIZFONpkVPQTxVuA/4b1c62b9-ff6e-4bd1-4c8d-de59b8485e00/large" />
150
+ <img alt="Observability" src="https://imagedelivery.net/UNvjPBCIZFONpkVPQTxVuA/5c764759-e525-499e-544a-1077c45e9600/large" />
151
+
152
+ ## 🚀 Getting Started
153
+
154
+ ### Agenta Cloud (Recommended):
155
+ The easiest way to get started is through Agenta Cloud. Free tier available with no credit card required.
156
+
157
+ <p align="center">
143
158
  <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
144
159
  <picture >
145
- <source width="160" media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/759422d8-01bc-4503-bf3c-b5871c99359a" >
146
- <source width="160" media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/ffa9af5f-0981-4e95-9272-cb35eedb6780" >
147
- <img alt="Get Started with Agenta Cloud" src="https://github.com/user-attachments/assets/ffa9af5f-0981-4e95-9272-cb35eedb6780" >
160
+ <source width="200" media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/3aa96780-b7e5-4b6f-bfee-8feaa36ff3b2" >
161
+ <source width="200" media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/3aa96780-b7e5-4b6f-bfee-8feaa36ff3b2" >
162
+ <img alt="Try Agenta Live Demo" src="https://github.com/user-attachments/assets/3aa96780-b7e5-4b6f-bfee-8feaa36ff3b2" >
148
163
  </picture>
149
164
  </a>
165
+ </p>
166
+
150
167
 
151
168
 
152
169
  ### Self-hosting Agenta
@@ -156,31 +173,47 @@ The easiest way to get started is through Agenta Cloud. It is free to signup, an
156
173
  git clone https://github.com/Agenta-AI/agenta && cd agenta
157
174
  ```
158
175
 
159
- 2. Edit `hosting/docker-compose/oss/.env.oss.gh` and add your LLM provider API keys.
160
-
161
- 3. Start Agenta services:
176
+ 2. Start Agenta services:
162
177
  ```bash
163
178
  docker compose -f hosting/docker-compose/oss/docker-compose.gh.yml --env-file hosting/docker-compose/oss/.env.oss.gh --profile with-web up -d
164
179
  ```
165
180
 
166
- 4. Access Agenta at `http://localhost`.
181
+ 3. Access Agenta at `http://localhost`.
167
182
 
168
183
  For deploying on a remote host, or using different ports refers to our [self-hosting](https://docs.agenta.ai/self-host/host-locally?utm_source=github&utm_medium=referral&utm_campaign=readme) and [remote deployment documentation](https://docs.agenta.ai/self-host/host-remotely?utm_source=github&utm_medium=referral&utm_campaign=readme).
169
184
 
170
- ## Disabling Anonymized Tracking
185
+ ## 💬 Community
171
186
 
172
- By default, Agenta automatically reports anonymized basic usage statistics. This helps us understand how Agenta is used and track its overall usage and growth. This data does not include any sensitive information. To disable anonymized telemetry set `TELEMETRY_ENABLED` to `false` in your `.env` file.
187
+ Find help, explore resources, or get involved:
173
188
 
189
+ ### 🧰 Support
174
190
 
175
- ## Contributing
191
+ - **📚 [Documentation](https://docs.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme)** – Full guides and API reference
192
+ - **📋 [Changelog](https://docs.agenta.ai/changelog/main?utm_source=github&utm_medium=referral&utm_campaign=readme)** – Track recent updates
193
+ - **💬 [Slack Community](https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ)** – Ask questions and get support
176
194
 
177
- We warmly welcome contributions to Agenta. Feel free to submit issues, fork the repository, and send pull requests.
195
+ ### 🤝 Contribute
178
196
 
179
- We are usually hanging in our Slack. Feel free to [join our Slack and ask us anything](https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ)
197
+ We welcome contributions of all kinds from filing issues and sharing ideas to improving the codebase.
180
198
 
181
- Check out our [Contributing Guide](https://docs.agenta.ai/misc/contributing/getting-started?utm_source=github&utm_medium=referral&utm_campaign=readme) for more information.
199
+ - **🐛 [Report bugs](https://github.com/Agenta-AI/agenta/issues)** Help us by reporting problems you encounter
200
+ - **💡 [Share ideas and feedback](https://github.com/Agenta-AI/agenta/discussions)** – Suggest features or vote on ideas
201
+ - **🔧 [Contribute to the codebase](https://docs.agenta.ai/misc/contributing/getting-started?utm_source=github&utm_medium=referral&utm_campaign=readme)** – Read the guide and open a pull request
182
202
 
183
- ### Contributors
203
+ ## Star Agenta
204
+
205
+ **Consider giving us a star!** It helps us grow our community and gets Agenta in front of more developers.
206
+ </br>
207
+ </br>
208
+ <p align="center">
209
+ <a href="https://github.com/agenta-ai/agenta">
210
+
211
+ <img width="300" alt="Star us" src="https://github.com/user-attachments/assets/2c8e580a-c930-4312-bf1b-08f631b41c62" />
212
+ <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
213
+
214
+ </p>
215
+
216
+ ## Contributors ✨
184
217
 
185
218
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
186
219
  [![All Contributors](https://img.shields.io/badge/all_contributors-49-orange.svg?style=flat-square)](#contributors-)
@@ -266,3 +299,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
266
299
 
267
300
  This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind are welcome!
268
301
 
302
+ ## Disabling Anonymized Tracking
303
+
304
+ By default, Agenta automatically reports anonymized basic usage statistics. This helps us understand how Agenta is used and track its overall usage and growth. This data does not include any sensitive information. To disable anonymized telemetry set `TELEMETRY_ENABLED` to `false` in your `.env` file.
305
+
@@ -207,7 +207,7 @@ agenta/sdk/context/routing.py,sha256=FEsjw8EttI1SMyUo96ptcUsvHJnhoKwdr1szlkxxJNU
207
207
  agenta/sdk/context/tracing.py,sha256=xjErrXP1Nq1AfL-Cif1l-lNEfs12eQ3v_VCRgoKe7nY,743
208
208
  agenta/sdk/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
209
  agenta/sdk/decorators/routing.py,sha256=RUq55Y3GHkQilJlobQmUHnHBmPZrhHgQyPxKF_D9RXo,24799
210
- agenta/sdk/decorators/tracing.py,sha256=Px4X9thTlBH7rmq-Wi7BAxEhy_xdfb7XsEEmuaq-SzQ,10077
210
+ agenta/sdk/decorators/tracing.py,sha256=n3AZWw8HHKUoIHD79_ktPQcoZRIw3RthSxU5xkO-skg,10109
211
211
  agenta/sdk/litellm/__init__.py,sha256=Bpz1gfHQc0MN1yolWcjifLWznv6GjHggvRGQSpxpihM,37
212
212
  agenta/sdk/litellm/litellm.py,sha256=vZYuzcSss04zE258eC-3xjKjY-HToafB1ekjmKjMR4U,10202
213
213
  agenta/sdk/litellm/mockllm.py,sha256=8V6dqdv8eA4P-VoXIwHNYlIjHG189P14POSfSfluVw0,678
@@ -230,7 +230,7 @@ agenta/sdk/middleware/otel.py,sha256=lHzhGUv4fq2RPuTPH2keJ16v-_cBUrLrTqWzHUmEVdI
230
230
  agenta/sdk/middleware/vault.py,sha256=Hd_S8Lw1PLFdavnFwW_bb-HYlyYvaCxNJNwjvd2Bxyc,4043
231
231
  agenta/sdk/router.py,sha256=mOguvtOwl2wmyAgOuWTsf98pQwpNiUILKIo67W_hR3A,119
232
232
  agenta/sdk/tracing/__init__.py,sha256=rQNe5-zT5Kt7_CDhq-lnUIi1EYTBVzVf_MbfcIxVD98,41
233
- agenta/sdk/tracing/attributes.py,sha256=zh8JQZSeYCLBeIRSopKJx6QQ-WEgw08Cr64DS_WOcT8,3833
233
+ agenta/sdk/tracing/attributes.py,sha256=DwjjOk3mGOvz0jYu8EYr3hhItvawK5GX80_MfciqPrc,5559
234
234
  agenta/sdk/tracing/conventions.py,sha256=JBtznBXZ3aRkGKkLl7cPwdMNh3w1G-H2Ta2YrAxbr38,950
235
235
  agenta/sdk/tracing/exporters.py,sha256=ib-VSMaqKn3XDrChjjHlsPJ9Fu3ePgIYR-TAWxSJv9Q,3251
236
236
  agenta/sdk/tracing/inline.py,sha256=tY9mH1zMlJMqf2WWKJdakLtMHJKNeYRaynqvsPeqpTY,31312
@@ -250,6 +250,6 @@ agenta/sdk/utils/logging.py,sha256=gBk2ecRvltN7f8qtnUHXBiZPWOdArN_b5civ_3w_Oek,8
250
250
  agenta/sdk/utils/preinit.py,sha256=YlJL7RLfel0R7DFp-jK7OV-z4ZIQJM0oupYlk7g8b5o,1278
251
251
  agenta/sdk/utils/singleton.py,sha256=17Ph7LGnnV8HkPjImruKita2ni03Ari5jr0jqm__4sc,312
252
252
  agenta/sdk/utils/timing.py,sha256=hVzkF7ObjrBlRcB2lMowE8nUkWgYqU2kIJoqRZNXKdM,1556
253
- agenta-0.39.3.dist-info/METADATA,sha256=E8eng2mhkXJZKp8Cjtcy98lZxEdY8sNHk0X35ZSR6TA,29742
254
- agenta-0.39.3.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
255
- agenta-0.39.3.dist-info/RECORD,,
253
+ agenta-0.40.0.dist-info/METADATA,sha256=Oga16OtunVBNMQivKGtc_cT0KtmTdtU_kMCfn6EySok,31346
254
+ agenta-0.40.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
255
+ agenta-0.40.0.dist-info/RECORD,,