evaldeck 0.1.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.
@@ -0,0 +1,363 @@
1
+ Metadata-Version: 2.4
2
+ Name: evaldeck
3
+ Version: 0.1.0
4
+ Summary: The evaluation framework for AI agents. Pytest for agents.
5
+ Project-URL: Homepage, https://github.com/tantra-run/evaldeck-py
6
+ Project-URL: Documentation, https://tantra-run.github.io/evaldeck-py/
7
+ Project-URL: Repository, https://github.com/tantra-run/evaldeck-py
8
+ Project-URL: Issues, https://github.com/tantra-run/evaldeck-py/issues
9
+ Author: Tantra Run Team
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ Keywords: agents,ai,autogen,crewai,evaluation,langchain,llm,testing
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: Apache Software License
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Software Development :: Testing
22
+ Requires-Python: >=3.10
23
+ Requires-Dist: click>=8.0
24
+ Requires-Dist: openinference-semantic-conventions>=0.1
25
+ Requires-Dist: opentelemetry-sdk>=1.20
26
+ Requires-Dist: pydantic>=2.0
27
+ Requires-Dist: pyyaml>=6.0
28
+ Requires-Dist: rich>=13.0
29
+ Provides-Extra: all
30
+ Requires-Dist: anthropic>=0.18; extra == 'all'
31
+ Requires-Dist: openai>=1.0; extra == 'all'
32
+ Provides-Extra: anthropic
33
+ Requires-Dist: anthropic>=0.18; extra == 'anthropic'
34
+ Provides-Extra: dev
35
+ Requires-Dist: build>=1.0; extra == 'dev'
36
+ Requires-Dist: mypy>=1.0; extra == 'dev'
37
+ Requires-Dist: pre-commit>=3.0; extra == 'dev'
38
+ Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
39
+ Requires-Dist: pytest-cov>=4.0; extra == 'dev'
40
+ Requires-Dist: pytest>=7.0; extra == 'dev'
41
+ Requires-Dist: ruff>=0.1; extra == 'dev'
42
+ Requires-Dist: twine>=5.0; extra == 'dev'
43
+ Provides-Extra: docs
44
+ Requires-Dist: mkdocs-autorefs>=0.5; extra == 'docs'
45
+ Requires-Dist: mkdocs-material>=9.5; extra == 'docs'
46
+ Requires-Dist: mkdocs>=1.5; extra == 'docs'
47
+ Requires-Dist: mkdocstrings[python]>=0.24; extra == 'docs'
48
+ Provides-Extra: openai
49
+ Requires-Dist: openai>=1.0; extra == 'openai'
50
+ Description-Content-Type: text/markdown
51
+
52
+ # Evaldeck
53
+
54
+ **The evaluation framework for AI agents. Pytest for agents.**
55
+
56
+ [![PyPI version](https://badge.fury.io/py/evaldeck.svg)](https://badge.fury.io/py/evaldeck)
57
+ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
58
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
59
+
60
+ ---
61
+
62
+ Evaldeck helps you answer one question: **"Is my agent actually working?"**
63
+
64
+ Unlike LLM evaluation tools that focus on input→output scoring, Evaldeck evaluates the entire agent execution—how it reasons, which tools it selects, and whether it achieves the goal.
65
+
66
+ ## Why Evaldeck?
67
+
68
+ - **Agent-native**: Evaluates multi-step traces, not just final outputs
69
+ - **Framework-agnostic**: Works with LangChain, CrewAI, AutoGen, or custom agents
70
+ - **Developer-friendly**: CLI-first, CI/CD ready, 5-minute setup
71
+ - **Comprehensive metrics**: Tool correctness, step efficiency, plan adherence, and more
72
+ - **Flexible grading**: Code-based, model-based (BYOK), or combine both
73
+
74
+ ## Installation
75
+
76
+ ```bash
77
+ pip install evaldeck
78
+ ```
79
+
80
+ With framework integrations:
81
+
82
+ ```bash
83
+ pip install evaldeck[langchain] # LangChain/LangGraph support
84
+ pip install evaldeck[openai] # OpenAI model graders
85
+ pip install evaldeck[all] # Everything
86
+ ```
87
+
88
+ ## Quick Start
89
+
90
+ ### 1. Initialize your project
91
+
92
+ ```bash
93
+ evaldeck init
94
+ ```
95
+
96
+ This creates:
97
+ ```
98
+ evaldeck.yaml # Configuration
99
+ tests/evals/ # Test directory
100
+ example.yaml # Example test case
101
+ ```
102
+
103
+ ### 2. Define test cases
104
+
105
+ ```yaml
106
+ # tests/evals/booking.yaml
107
+ name: book_flight_basic
108
+ input: "Book me a flight from NYC to LA on March 15th"
109
+
110
+ expected:
111
+ tools_called:
112
+ - search_flights
113
+ - book_flight
114
+ output_contains:
115
+ - "confirmation"
116
+ - "March 15"
117
+ max_steps: 5
118
+ ```
119
+
120
+ ### 3. Run evaluations
121
+
122
+ ```bash
123
+ evaldeck run
124
+ ```
125
+
126
+ Output:
127
+ ```
128
+ Running 3 tests...
129
+
130
+ ✓ book_flight_basic (1.2s)
131
+ ✓ book_flight_roundtrip (2.1s)
132
+ ✗ book_flight_with_preferences (1.8s)
133
+ └─ FAIL at step 3: Wrong tool called
134
+ Expected: search_flights_with_filters
135
+ Got: search_flights
136
+
137
+ Results: 2/3 passed (66.7%)
138
+ ```
139
+
140
+ ## Configuration
141
+
142
+ ```yaml
143
+ # evaldeck.yaml
144
+ version: 1
145
+
146
+ agent:
147
+ module: my_agent
148
+ function: run
149
+
150
+ test_dir: tests/evals
151
+
152
+ defaults:
153
+ timeout: 30
154
+ retries: 2
155
+
156
+ graders:
157
+ llm:
158
+ model: gpt-4o-mini
159
+ # Uses OPENAI_API_KEY from environment
160
+
161
+ thresholds:
162
+ min_pass_rate: 0.9
163
+ ```
164
+
165
+ ## Test Case Format
166
+
167
+ ### Basic test case
168
+
169
+ ```yaml
170
+ name: test_name
171
+ input: "User message to the agent"
172
+
173
+ expected:
174
+ # What tools should be called?
175
+ tools_called:
176
+ - tool_name_1
177
+ - tool_name_2
178
+
179
+ # What tools should NOT be called?
180
+ tools_not_called:
181
+ - dangerous_tool
182
+
183
+ # What should the output contain?
184
+ output_contains:
185
+ - "expected phrase"
186
+
187
+ # What should the output NOT contain?
188
+ output_not_contains:
189
+ - "error"
190
+
191
+ # Maximum steps allowed
192
+ max_steps: 10
193
+
194
+ # Must complete successfully?
195
+ task_completed: true
196
+ ```
197
+
198
+ ### Using model-based grading
199
+
200
+ ```yaml
201
+ name: helpful_response
202
+ input: "Explain quantum computing"
203
+
204
+ graders:
205
+ - type: llm
206
+ prompt: |
207
+ Rate this response for helpfulness and accuracy.
208
+ Response: {{ output }}
209
+
210
+ Score from 1-5, where 5 is excellent.
211
+ threshold: 4
212
+ ```
213
+
214
+ ## Framework Integration
215
+
216
+ ### LangChain
217
+
218
+ Copy the reference tracer from `examples/langchain_tracer.py` to your project:
219
+
220
+ ```python
221
+ from langchain_tracer import EvaldeckTracer
222
+ from langchain.agents import AgentExecutor
223
+
224
+ tracer = EvaldeckTracer()
225
+ agent = AgentExecutor(...)
226
+
227
+ result = agent.invoke(
228
+ {"input": "Book a flight"},
229
+ config={"callbacks": [tracer]}
230
+ )
231
+
232
+ # Get trace for evaluation
233
+ trace = tracer.get_trace()
234
+ ```
235
+
236
+ ### Manual trace construction
237
+
238
+ ```python
239
+ from evaldeck import Trace, Step, Evaluator
240
+
241
+ trace = Trace(
242
+ input="Book a flight from NYC to LA",
243
+ steps=[
244
+ Step(
245
+ type="tool_call",
246
+ tool_name="search_flights",
247
+ tool_args={"from": "NYC", "to": "LA"},
248
+ tool_result=[{"flight": "AA123", "price": 299}]
249
+ ),
250
+ Step(
251
+ type="tool_call",
252
+ tool_name="book_flight",
253
+ tool_args={"flight_id": "AA123"},
254
+ tool_result={"confirmation": "ABC123"}
255
+ ),
256
+ ],
257
+ output="Your flight AA123 is booked. Confirmation: ABC123",
258
+ status="success"
259
+ )
260
+
261
+ evaluator = Evaluator()
262
+ result = evaluator.evaluate(trace, test_case)
263
+ ```
264
+
265
+ ## CI/CD Integration
266
+
267
+ ### GitHub Actions
268
+
269
+ ```yaml
270
+ # .github/workflows/evaldeck.yaml
271
+ name: Agent Evaluation
272
+
273
+ on: [push, pull_request]
274
+
275
+ jobs:
276
+ evaluate:
277
+ runs-on: ubuntu-latest
278
+ steps:
279
+ - uses: actions/checkout@v4
280
+
281
+ - uses: actions/setup-python@v5
282
+ with:
283
+ python-version: '3.11'
284
+
285
+ - run: pip install evaldeck[all]
286
+
287
+ - run: evaldeck run --output junit --output-file results.xml
288
+ env:
289
+ OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
290
+
291
+ - uses: mikepenz/action-junit-report@v4
292
+ if: always()
293
+ with:
294
+ report_paths: results.xml
295
+ ```
296
+
297
+ ## Metrics
298
+
299
+ | Metric | Description |
300
+ |--------|-------------|
301
+ | `task_completion` | Did the agent achieve the goal? |
302
+ | `tool_correctness` | Were the right tools selected? |
303
+ | `argument_correctness` | Were correct arguments passed to tools? |
304
+ | `step_efficiency` | Did it complete without unnecessary steps? |
305
+ | `tool_call_ordering` | Were tools called in the right sequence? |
306
+
307
+ ## Graders
308
+
309
+ ### Code-based (deterministic)
310
+
311
+ ```python
312
+ from evaldeck.graders import ContainsGrader, ToolCalledGrader
313
+
314
+ graders = [
315
+ ContainsGrader(values=["confirmation"]),
316
+ ToolCalledGrader(required=["book_flight"]),
317
+ ]
318
+ ```
319
+
320
+ ### Model-based (LLM-as-judge)
321
+
322
+ ```python
323
+ from evaldeck.graders import LLMGrader
324
+
325
+ grader = LLMGrader(
326
+ prompt="Did the agent complete the booking? Answer: pass or fail",
327
+ model="gpt-4o-mini", # Uses your API key
328
+ )
329
+ ```
330
+
331
+ ## Roadmap
332
+
333
+ - [x] Core evaluation engine
334
+ - [x] CLI interface
335
+ - [x] LangChain integration
336
+ - [ ] CrewAI integration
337
+ - [ ] AutoGen integration
338
+ - [ ] VS Code extension
339
+ - [ ] Historical result tracking
340
+ - [ ] Team dashboard (cloud)
341
+
342
+ ## Contributing
343
+
344
+ We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
345
+
346
+ ```bash
347
+ # Setup development environment
348
+ git clone https://github.com/tantra-run/evaldeck-py.git
349
+ cd evaldeck
350
+ pip install -e ".[dev]"
351
+ pre-commit install
352
+
353
+ # Run tests
354
+ pytest
355
+
356
+ # Run linting
357
+ ruff check .
358
+ mypy src/
359
+ ```
360
+
361
+ ## License
362
+
363
+ Apache 2.0 - See [LICENSE](LICENSE) for details.
@@ -0,0 +1,21 @@
1
+ evaldeck/__init__.py,sha256=SF9kMDGuf3UHMHrMeT8vBPzdLUtEqTjTAlRk6Fry9b0,1877
2
+ evaldeck/cli.py,sha256=Khrl2CRkrYP18b1mG7sot82t-Glm4YAuNJxNkbRjuGU,10655
3
+ evaldeck/config.py,sha256=V1o5q7nkek2GH1q-bCszxO5DqmrsrvuKDGvb2eZikvs,5847
4
+ evaldeck/evaluator.py,sha256=kRdMGtIVJuMCJQWmeKvgjZrOLqAd9hq0kQVBJhUF9hM,19454
5
+ evaldeck/results.py,sha256=gygFnuh2cZdZv5ygxDB-Lksv_9N5sAj2HFkEXRgTnqQ,6039
6
+ evaldeck/test_case.py,sha256=Gqdy18W6S5KFd8Uy8gPd3LFvLaHbqr6ik1rt_s_LRNU,5009
7
+ evaldeck/trace.py,sha256=erVrdJyfUilutM1z6NioIp8FVbeCh5XP6VhGtbwAClU,5787
8
+ evaldeck/graders/__init__.py,sha256=TZtgQmdytdU-FbXpsZO_WUX7mJCH6rHtsahVB0kxpdI,784
9
+ evaldeck/graders/base.py,sha256=CvLq_AQQfQzdrb4Hs1q6gcKB05e0qfWn31fxXir8T-k,4821
10
+ evaldeck/graders/code.py,sha256=TmGz2FmEz5EQvLSYlRoYCeMsn5bTHqweIlSTm6Im-ko,15698
11
+ evaldeck/graders/llm.py,sha256=nWMPacy-wTLKcE-PnIBdWyD1OHpXKNaTOyF1eicbdK0,11725
12
+ evaldeck/integrations/__init__.py,sha256=IFyhW7gmnm3rRo27RRfL6Q2sGZ6lye7Abt9XqUql9eI,821
13
+ evaldeck/integrations/opentelemetry.py,sha256=j518FXsD0pqMNF4TvO97elX9oDiK_VaKxXd243q8dLE,15164
14
+ evaldeck/metrics/__init__.py,sha256=jXTIx5k9f1CjwS-9jc25YLeodhencoUOLfbP8qvcbbw,551
15
+ evaldeck/metrics/base.py,sha256=ibUQNfbkQEXTX1x8SqmFWelWAF1DQ785LXP1KYIZWUk,1790
16
+ evaldeck/metrics/builtin.py,sha256=ghdqeZRN51PhLeG8bGnPW2NNoPUAaeD05HtYlWw5yQM,5399
17
+ evaldeck-0.1.0.dist-info/METADATA,sha256=BYvKY1IB_qZTHOWG1wez-2j3Xgw9Q3jncSKaR1D_02A,8596
18
+ evaldeck-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
19
+ evaldeck-0.1.0.dist-info/entry_points.txt,sha256=wtyPiDMSTKf41ShIbQC5X8USDn68OybGecpTaMNaGts,47
20
+ evaldeck-0.1.0.dist-info/licenses/LICENSE,sha256=sEp2tzjeTY9bP_jb1TWAGV4yvxNhVngHpJNglJkT9YA,10770
21
+ evaldeck-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ evaldeck = evaldeck.cli:main
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to the Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2024 Evaldeck Contributors
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.