deepagents-evals 0.0.1__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 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: deepagents-evals
3
+ Version: 0.0.1
4
+ Summary: Evaluation utilities for deepagents (placeholder release).
5
+ Author-email: abhi <abhiabhi2306@gmail.com>
6
+ License: MIT
7
+ License-File: LICENSE
8
+ Keywords: agents,deepagents,evals,evaluation
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ # deepagents-evals
18
+
19
+ Evaluation utilities for deepagents.
20
+
21
+ This is an initial placeholder release reserving the package name. Real functionality will land in subsequent versions.
22
+
23
+ ## Install
24
+
25
+ ```bash
26
+ pip install deepagents-evals
27
+ ```
@@ -0,0 +1,5 @@
1
+ deepagents_evals/__init__.py,sha256=sXLh7g3KC4QCFxcZGBTpG2scR7hmmBsMjq6LqRptkRg,22
2
+ deepagents_evals-0.0.1.dist-info/METADATA,sha256=KMihG8QcrHrvGyQCxI-F1ErHV5n1ToZpW2VHR7H8eSQ,791
3
+ deepagents_evals-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ deepagents_evals-0.0.1.dist-info/licenses/LICENSE,sha256=gzXiolkaudD9GnXB1aOo1KV-oCjpytj0_zyJiCZWHhc,1061
5
+ deepagents_evals-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 abhi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.