aiverify-moonshot 0.4.6__py3-none-any.whl → 0.4.8__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.
- {aiverify_moonshot-0.4.6.dist-info → aiverify_moonshot-0.4.8.dist-info}/METADATA +12 -12
- {aiverify_moonshot-0.4.6.dist-info → aiverify_moonshot-0.4.8.dist-info}/RECORD +9 -9
- {aiverify_moonshot-0.4.6.dist-info → aiverify_moonshot-0.4.8.dist-info}/licenses/LICENSE.md +2 -2
- aiverify_moonshot-0.4.8.dist-info/licenses/NOTICES.md +2506 -0
- moonshot/integrations/cli/cli_errors.py +2 -2
- moonshot/integrations/cli/common/connectors.py +8 -8
- moonshot/integrations/web_api/app.py +1 -1
- aiverify_moonshot-0.4.6.dist-info/licenses/NOTICES.md +0 -3340
- {aiverify_moonshot-0.4.6.dist-info → aiverify_moonshot-0.4.8.dist-info}/WHEEL +0 -0
- {aiverify_moonshot-0.4.6.dist-info → aiverify_moonshot-0.4.8.dist-info}/licenses/AUTHORS.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: aiverify-moonshot
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.8
|
|
4
4
|
Summary: AI Verify advances Gen AI testing with Project Moonshot.
|
|
5
5
|
Project-URL: Repository, https://github.com/aiverify-foundation/moonshot
|
|
6
6
|
Project-URL: Documentation, https://aiverify-foundation.github.io/moonshot/
|
|
@@ -15,38 +15,38 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Requires-Python: >=3.11
|
|
18
|
-
Requires-Dist: datasets==2.
|
|
18
|
+
Requires-Dist: datasets==2.21.0
|
|
19
19
|
Requires-Dist: ijson==3.3.0
|
|
20
20
|
Requires-Dist: jinja2==3.1.4
|
|
21
21
|
Requires-Dist: numpy==1.26.4
|
|
22
22
|
Requires-Dist: pandas==2.2.2
|
|
23
23
|
Requires-Dist: pydantic==2.8.2
|
|
24
|
-
Requires-Dist: pyparsing==3.1.
|
|
24
|
+
Requires-Dist: pyparsing==3.1.4
|
|
25
25
|
Requires-Dist: python-dotenv==1.0.1
|
|
26
26
|
Requires-Dist: python-slugify==8.0.4
|
|
27
|
-
Requires-Dist: xxhash==3.
|
|
27
|
+
Requires-Dist: xxhash==3.5.0
|
|
28
28
|
Provides-Extra: all
|
|
29
29
|
Requires-Dist: cmd2==2.4.3; extra == 'all'
|
|
30
30
|
Requires-Dist: dependency-injector==4.41.0; extra == 'all'
|
|
31
|
-
Requires-Dist: fastapi==0.112.
|
|
32
|
-
Requires-Dist: rich==13.
|
|
31
|
+
Requires-Dist: fastapi==0.112.2; extra == 'all'
|
|
32
|
+
Requires-Dist: rich==13.8.0; extra == 'all'
|
|
33
33
|
Requires-Dist: typing-extensions==4.12.2; extra == 'all'
|
|
34
|
-
Requires-Dist: uvicorn==0.30.
|
|
34
|
+
Requires-Dist: uvicorn==0.30.6; extra == 'all'
|
|
35
35
|
Provides-Extra: cli
|
|
36
36
|
Requires-Dist: cmd2==2.4.3; extra == 'cli'
|
|
37
|
-
Requires-Dist: rich==13.
|
|
37
|
+
Requires-Dist: rich==13.8.0; extra == 'cli'
|
|
38
38
|
Provides-Extra: web-api
|
|
39
39
|
Requires-Dist: dependency-injector==4.41.0; extra == 'web-api'
|
|
40
|
-
Requires-Dist: fastapi==0.112.
|
|
40
|
+
Requires-Dist: fastapi==0.112.2; extra == 'web-api'
|
|
41
41
|
Requires-Dist: typing-extensions==4.12.2; extra == 'web-api'
|
|
42
|
-
Requires-Dist: uvicorn==0.30.
|
|
42
|
+
Requires-Dist: uvicorn==0.30.6; extra == 'web-api'
|
|
43
43
|
Description-Content-Type: text/markdown
|
|
44
44
|
|
|
45
45
|
<div align="center">
|
|
46
46
|
|
|
47
47
|

|
|
48
48
|
|
|
49
|
-
**Version 0.4.
|
|
49
|
+
**Version 0.4.8**
|
|
50
50
|
|
|
51
51
|
A simple and modular tool to evaluate any LLM application.
|
|
52
52
|
|
|
@@ -83,7 +83,7 @@ In this initial version, Moonshot can be used through several interfaces:
|
|
|
83
83
|
# Activate the virtual environment
|
|
84
84
|
source venv/bin/activate
|
|
85
85
|
```
|
|
86
|
-
4. If you plan to install our Web UI, you will also need [Node.js
|
|
86
|
+
4. If you plan to install our Web UI, you will also need [Node.js version 20.11.1 LTS](https://nodejs.org/en/blog/release/v20.11.1) and above
|
|
87
87
|
</br>
|
|
88
88
|
|
|
89
89
|
### ⬇️ Installation
|
|
@@ -6,7 +6,7 @@ moonshot/integrations/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
6
6
|
moonshot/integrations/cli/__main__.py,sha256=0VnYSj2AayvDCZ3uXpldPcjMHt2Yd7BWojWzFOGSSl4,679
|
|
7
7
|
moonshot/integrations/cli/active_session_cfg.py,sha256=n8hOFxFjvz26qbEFY4q7iPUZYrGLoeCmXJxmOb_xWUE,20
|
|
8
8
|
moonshot/integrations/cli/cli.py,sha256=9tnzcxcSOjblxCUpyh3pK0ke0bLs3s-63OxXtYoZI2g,2769
|
|
9
|
-
moonshot/integrations/cli/cli_errors.py,sha256=
|
|
9
|
+
moonshot/integrations/cli/cli_errors.py,sha256=vH7oUBjTD7pLqG7jwKv4bsKhvsSb6_3WSRbaeWWc4oI,22981
|
|
10
10
|
moonshot/integrations/cli/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
moonshot/integrations/cli/benchmark/benchmark.py,sha256=QUxr6DU11-XeH6Y3j1uPsZsotshgy64G_cWNf0Rn2_U,6303
|
|
12
12
|
moonshot/integrations/cli/benchmark/cookbook.py,sha256=h9exPhLKLRa9a1qWB2WptZ35gcVov332tjHDO9ECs0o,29639
|
|
@@ -18,7 +18,7 @@ moonshot/integrations/cli/benchmark/run.py,sha256=HBztvG_Zkg1ZAWsFv0QDE43FaEmx92
|
|
|
18
18
|
moonshot/integrations/cli/benchmark/runner.py,sha256=Y4Vt6Qqn9QzsM6eLUM9m2_XKkW3ctu-2jMTSei_TDPU,7098
|
|
19
19
|
moonshot/integrations/cli/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
moonshot/integrations/cli/common/common.py,sha256=hSvxj-T91nhKfJtQqxrIPgYdS8P_g7wbOwpFpqBg90I,3090
|
|
21
|
-
moonshot/integrations/cli/common/connectors.py,sha256=
|
|
21
|
+
moonshot/integrations/cli/common/connectors.py,sha256=7fcmzNU8iPodc8SPhO8kEn0fMrS8voCvy12QBm8PP00,19477
|
|
22
22
|
moonshot/integrations/cli/common/dataset.py,sha256=6v5qXgWBGhT4Rl5uuqPMwLeFF0c5m7ECzyGe1IFXNW0,4743
|
|
23
23
|
moonshot/integrations/cli/common/display_helper.py,sha256=8rVowW33XK0j0C_X_H1jUbFlFk1Y2WpzxmIUE3Ca5Co,1459
|
|
24
24
|
moonshot/integrations/cli/common/prompt_template.py,sha256=2cXWeHh16EUvzYFre7juMxT2R0x3kqDJVucH0bKLmCU,6351
|
|
@@ -34,7 +34,7 @@ moonshot/integrations/cli/utils/process_data.py,sha256=QVL5vp2_8ZgGicmCAdeYEHkeb
|
|
|
34
34
|
moonshot/integrations/web_api/.env.dev,sha256=0z5_Ut8rF-UqFZtgjkH2qoqORhD5_nSs2w_OeX2SteI,182
|
|
35
35
|
moonshot/integrations/web_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
moonshot/integrations/web_api/__main__.py,sha256=MdnLi_ZF-olAAEJwTPU1iGYFYwo-fNWNT2qfchkH3y4,2050
|
|
37
|
-
moonshot/integrations/web_api/app.py,sha256=
|
|
37
|
+
moonshot/integrations/web_api/app.py,sha256=pTRq76B_FoSOPxuLKqCesFz21_c-82vebybO1oFcnNs,3651
|
|
38
38
|
moonshot/integrations/web_api/container.py,sha256=DVkJG_qm7ItcG6tgMYOqIj07wpKhPWOOfy6-bEv72y4,5915
|
|
39
39
|
moonshot/integrations/web_api/logging_conf.py,sha256=t3EGRV6tZhV732KXe8_Tiy0fiwVAWxZX5Tt8VTgrrfg,3388
|
|
40
40
|
moonshot/integrations/web_api/log/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -171,9 +171,9 @@ moonshot/src/utils/import_modules.py,sha256=T9zTN59PFnvY2rjyWhSV9KSIAHxWV1pyBemF
|
|
|
171
171
|
moonshot/src/utils/log.py,sha256=YNgD7Eh2OT36XlmVBKCGUTAh9TRp4Akfe4kDdvHASgs,2502
|
|
172
172
|
moonshot/src/utils/pagination.py,sha256=5seymyRoqyENIhKllAatr1T91kMCGFslcvRnJHyMSvc,814
|
|
173
173
|
moonshot/src/utils/timeit.py,sha256=TvuF0w8KWhp0oZFY0cUU3UY0xlGKjchb0OkfYfgVTlc,866
|
|
174
|
-
aiverify_moonshot-0.4.
|
|
175
|
-
aiverify_moonshot-0.4.
|
|
176
|
-
aiverify_moonshot-0.4.
|
|
177
|
-
aiverify_moonshot-0.4.
|
|
178
|
-
aiverify_moonshot-0.4.
|
|
179
|
-
aiverify_moonshot-0.4.
|
|
174
|
+
aiverify_moonshot-0.4.8.dist-info/METADATA,sha256=IAMPsICJQHpQB9sMEPWJE_uRcOcA5pOG5JMF080QF5Y,12398
|
|
175
|
+
aiverify_moonshot-0.4.8.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
176
|
+
aiverify_moonshot-0.4.8.dist-info/licenses/AUTHORS.md,sha256=mmAbe3i3sT8JZHJMBhxp3i1xRehV0g7WB4T_eyIBuBs,59
|
|
177
|
+
aiverify_moonshot-0.4.8.dist-info/licenses/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
178
|
+
aiverify_moonshot-0.4.8.dist-info/licenses/NOTICES.md,sha256=vS1zZYAnGjCJdwQ13xv3b2zc30wOS98ZnCKluT-AhHs,123266
|
|
179
|
+
aiverify_moonshot-0.4.8.dist-info/RECORD,,
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
APPENDIX: How to apply the Apache License to your work.
|
|
179
179
|
|
|
180
180
|
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
182
|
replaced with your own identifying information. (Don't include
|
|
183
183
|
the brackets!) The text should be enclosed in the appropriate
|
|
184
184
|
comment syntax for the file format. We also recommend that a
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|