aiverify-moonshot 0.6.2__py3-none-any.whl → 0.6.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.
- {aiverify_moonshot-0.6.2.dist-info → aiverify_moonshot-0.6.3.dist-info}/METADATA +2 -2
- {aiverify_moonshot-0.6.2.dist-info → aiverify_moonshot-0.6.3.dist-info}/RECORD +25 -25
- aiverify_moonshot-0.6.3.dist-info/licenses/NOTICES.md +1187 -0
- moonshot/integrations/cli/__main__.py +1 -3
- moonshot/integrations/cli/redteam/session.py +8 -8
- moonshot/integrations/web_api/app.py +1 -1
- moonshot/integrations/web_api/routes/benchmark_result.py +1 -0
- moonshot/integrations/web_api/routes/bookmark.py +5 -2
- moonshot/integrations/web_api/routes/context_strategy.py +3 -1
- moonshot/integrations/web_api/routes/prompt_template.py +1 -0
- moonshot/integrations/web_api/schemas/cookbook_create_dto.py +4 -2
- moonshot/integrations/web_api/schemas/prompt_response_model.py +0 -1
- moonshot/integrations/web_api/schemas/recipe_create_dto.py +2 -1
- moonshot/integrations/web_api/services/context_strategy_service.py +1 -4
- moonshot/integrations/web_api/services/cookbook_service.py +0 -2
- moonshot/integrations/web_api/services/session_service.py +5 -5
- moonshot/integrations/web_api/services/utils/exceptions_handler.py +47 -10
- moonshot/integrations/web_api/services/utils/results_formatter.py +25 -16
- moonshot/integrations/web_api/status_updater/interface/benchmark_progress_callback.py +3 -3
- moonshot/integrations/web_api/status_updater/interface/redteam_progress_callback.py +3 -3
- moonshot/src/cookbooks/cookbook_arguments.py +1 -1
- moonshot/src/redteaming/attack/attack_module.py +9 -3
- aiverify_moonshot-0.6.2.dist-info/licenses/NOTICES.md +0 -2506
- {aiverify_moonshot-0.6.2.dist-info → aiverify_moonshot-0.6.3.dist-info}/WHEEL +0 -0
- {aiverify_moonshot-0.6.2.dist-info → aiverify_moonshot-0.6.3.dist-info}/licenses/AUTHORS.md +0 -0
- {aiverify_moonshot-0.6.2.dist-info → aiverify_moonshot-0.6.3.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiverify-moonshot
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.3
|
|
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/
|
|
@@ -48,7 +48,7 @@ Description-Content-Type: text/markdown
|
|
|
48
48
|
|
|
49
49
|

|
|
50
50
|
|
|
51
|
-
**Version 0.6.
|
|
51
|
+
**Version 0.6.3**
|
|
52
52
|
|
|
53
53
|
A simple and modular tool to evaluate any LLM application.
|
|
54
54
|
|
|
@@ -3,7 +3,7 @@ moonshot/__main__.py,sha256=5lD240TY2YfG_p0sQtoHsw9V4DWWI3otpzIYP1hUbC8,12056
|
|
|
3
3
|
moonshot/api.py,sha256=wvad-BcKDKEu25c6-YrsBx_uPiLKIBRsbwgThT50Uh0,4877
|
|
4
4
|
moonshot/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
moonshot/integrations/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
moonshot/integrations/cli/__main__.py,sha256=
|
|
6
|
+
moonshot/integrations/cli/__main__.py,sha256=8tADdK3A05Ro8ZDwSftqMMnJb_3US51IKkYF2hVJ76k,652
|
|
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
9
|
moonshot/integrations/cli/cli_errors.py,sha256=ltQKnj9bawpVogQFOgLHbxL_9CcFQf3XOR6yQtdqGS4,24030
|
|
@@ -29,41 +29,41 @@ moonshot/integrations/cli/redteam/attack_module.py,sha256=d3UCtt8IdVhTMOMpvJG4sf
|
|
|
29
29
|
moonshot/integrations/cli/redteam/context_strategy.py,sha256=gLNgnd1oHWD1X93BQoKlR7G8b5g9P6AcKFLlE3WvETk,7065
|
|
30
30
|
moonshot/integrations/cli/redteam/prompt_template.py,sha256=rWINvMFLax8ynIFJoX93xsB1cWJ8-dQ1nRyqgdri2yQ,2079
|
|
31
31
|
moonshot/integrations/cli/redteam/redteam.py,sha256=144tVuiSWBLseC0EvvIuevHYJhqn39xvg36-1cLgGWQ,4257
|
|
32
|
-
moonshot/integrations/cli/redteam/session.py,sha256=
|
|
32
|
+
moonshot/integrations/cli/redteam/session.py,sha256=as8oyX3M0sIRSB9ZwdI7_qIe1x5b0YDsH_Mj1ttEcSw,37784
|
|
33
33
|
moonshot/integrations/cli/utils/process_data.py,sha256=QVL5vp2_8ZgGicmCAdeYEHkeb6f-NC775-JCzWziNiU,1901
|
|
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=fSpPcyOSR5e5IRjPqJs5DI2-yJVkDbN9ZtzkYogi5M4,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
|
|
41
41
|
moonshot/integrations/web_api/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
42
|
moonshot/integrations/web_api/routes/attack_modules.py,sha256=m0mGGTEHyaVld8WYHXxQ5Gm0sKdTqy_rJUrNVFcgVgw,2413
|
|
43
43
|
moonshot/integrations/web_api/routes/benchmark.py,sha256=RRzouKcoVNYXm7o1LadsZTgzfmUsaYdQTC0AfsLdiC4,4163
|
|
44
|
-
moonshot/integrations/web_api/routes/benchmark_result.py,sha256=
|
|
45
|
-
moonshot/integrations/web_api/routes/bookmark.py,sha256=
|
|
46
|
-
moonshot/integrations/web_api/routes/context_strategy.py,sha256=
|
|
44
|
+
moonshot/integrations/web_api/routes/benchmark_result.py,sha256=FrSMZBdyQge4YS61V2b1zpQ6zKmZ9Zzjw19bg0XdmGc,6352
|
|
45
|
+
moonshot/integrations/web_api/routes/bookmark.py,sha256=laJYRbFv65zviUHnHSbRJZqR9rUda8Xpl3gqwQNpy18,6318
|
|
46
|
+
moonshot/integrations/web_api/routes/context_strategy.py,sha256=odAHV_mMpgEGRz_03rZzehma5cP6yh4ahi50EJXuB1I,4822
|
|
47
47
|
moonshot/integrations/web_api/routes/cookbook.py,sha256=oddmcdfhgH3qZb4_ThfUk8SBKmHOt51dFlAHubQh2fQ,8648
|
|
48
48
|
moonshot/integrations/web_api/routes/dataset.py,sha256=YhX4xNEgI5KwbmQ-SsLc5SpD3-9EZ6-e2AxBh1QJnUc,8238
|
|
49
49
|
moonshot/integrations/web_api/routes/endpoint.py,sha256=ZFx0WUe3-GGdmBz_hzYiOmjvJHN4PQy_8lCKJMBjxcE,10715
|
|
50
50
|
moonshot/integrations/web_api/routes/metric.py,sha256=f_HHexxKUfqFE5FkeCwRh8n36H2mREtLnK2pDrw3A-w,2856
|
|
51
|
-
moonshot/integrations/web_api/routes/prompt_template.py,sha256=
|
|
51
|
+
moonshot/integrations/web_api/routes/prompt_template.py,sha256=_gwIJcqkhDURrZ5xz7CyuGlsIEH1ErAgdU8Ju_usCow,4891
|
|
52
52
|
moonshot/integrations/web_api/routes/recipe.py,sha256=WOcq4bm2LP87ovO4Op6cDbUPJ2TeHYaMnxoFN7beh9I,8455
|
|
53
53
|
moonshot/integrations/web_api/routes/redteam.py,sha256=t-jNot5_PkV6f5_WBorp1HL437NY5RZzxSE-2NfG0es,24541
|
|
54
54
|
moonshot/integrations/web_api/routes/runner.py,sha256=NQdAmVIOnNgSESX3am6wAE0YLIxHYXlnQbh00_7-SD4,8438
|
|
55
55
|
moonshot/integrations/web_api/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
56
|
moonshot/integrations/web_api/schemas/benchmark_runner_dto.py,sha256=IIn6KeMcwxTSlwXuCnOUhd3x24ucq-goV2brU1OvxT4,369
|
|
57
57
|
moonshot/integrations/web_api/schemas/bookmark_create_dto.py,sha256=C78vG8UG02N7Cmt6RSuS8e4sX_G-MLCiAWT-cF5BE8s,374
|
|
58
|
-
moonshot/integrations/web_api/schemas/cookbook_create_dto.py,sha256=
|
|
58
|
+
moonshot/integrations/web_api/schemas/cookbook_create_dto.py,sha256=fW6bCd5FPb6AgWPucMgwehdh40_b6ajzZoV0rMy4Ebw,829
|
|
59
59
|
moonshot/integrations/web_api/schemas/cookbook_response_model.py,sha256=COLvaE4Hrz_w-C_HQkB7feztweIr0wkY9h8N6NKNIr8,332
|
|
60
60
|
moonshot/integrations/web_api/schemas/dataset_create_dto.py,sha256=923Etaq2J1-S9-Xvh4tcrMIHpRrJ381tA8tj0M2kj1A,907
|
|
61
61
|
moonshot/integrations/web_api/schemas/dataset_response_dto.py,sha256=s5x4-UXEWccWhK42E0FPXiHG6VqjuFuph-2t5atEkg4,171
|
|
62
62
|
moonshot/integrations/web_api/schemas/endpoint_create_dto.py,sha256=WS8AfRybrweoOgZx6K6jiNy1Z6J3IZS1PUNnrRxGKyM,678
|
|
63
63
|
moonshot/integrations/web_api/schemas/endpoint_response_model.py,sha256=OmmM2uaPSgB2aqPFfkhseKkI5OKCKilXR19gDmwFlLc,321
|
|
64
|
-
moonshot/integrations/web_api/schemas/prompt_response_model.py,sha256=
|
|
64
|
+
moonshot/integrations/web_api/schemas/prompt_response_model.py,sha256=G9ywk59SoE7Oy50EoUS8uj1UkhgUjyhrbrsC_aXr36s,302
|
|
65
65
|
moonshot/integrations/web_api/schemas/prompt_template_response_model.py,sha256=V7znK-QjQVUXUbsmEy5hZHzjnHYCN1kDtvOxgyxF83k,195
|
|
66
|
-
moonshot/integrations/web_api/schemas/recipe_create_dto.py,sha256=
|
|
66
|
+
moonshot/integrations/web_api/schemas/recipe_create_dto.py,sha256=zA8vzpi7CMGe2dcIUZYNndUXOPeKCIAbDEJz-mYVIks,1118
|
|
67
67
|
moonshot/integrations/web_api/schemas/recipe_response_model.py,sha256=2__672E0tgicx6f_i34IxYqc9GnDkUY40bLsAkMWQMw,257
|
|
68
68
|
moonshot/integrations/web_api/schemas/session_create_dto.py,sha256=3Xhj5JOEEWwaoq1q4FZLBVUdpo59C6X6m4y_qLurEhg,493
|
|
69
69
|
moonshot/integrations/web_api/schemas/session_prompt_dto.py,sha256=AcMq3UhKrZJIEYDrEfK8xPHeTNk2Ex4IDXrDWZwn6Fo,218
|
|
@@ -78,21 +78,21 @@ moonshot/integrations/web_api/services/benchmark_test_manager.py,sha256=aPoB6hOf
|
|
|
78
78
|
moonshot/integrations/web_api/services/benchmark_test_state.py,sha256=MyhTxpAhhP66JF0ua1SMc_IIeIjDxQY5swOXv9cmYaY,1887
|
|
79
79
|
moonshot/integrations/web_api/services/benchmarking_service.py,sha256=lJZeNTqxEPBLrZNX3Z9JIilgwetywSkv0deQkcb8mQs,1257
|
|
80
80
|
moonshot/integrations/web_api/services/bookmark_service.py,sha256=jI9nXs1hjzO0CLG2LKaXSzDApLThkfCvPUkaNNV9A5A,3546
|
|
81
|
-
moonshot/integrations/web_api/services/context_strategy_service.py,sha256=
|
|
82
|
-
moonshot/integrations/web_api/services/cookbook_service.py,sha256=
|
|
81
|
+
moonshot/integrations/web_api/services/context_strategy_service.py,sha256=F6ulJbmx9ZNuUEVco6e2_rr2eLu5NV1nKDLaP6bNbP8,681
|
|
82
|
+
moonshot/integrations/web_api/services/cookbook_service.py,sha256=wsOFN8tXvzpsm-vRlHbUwMvdtyxInB1kjoasssFtDAI,8734
|
|
83
83
|
moonshot/integrations/web_api/services/dataset_service.py,sha256=FUXLgU32nghoLWWXBA_4GzeQb8eK31tjbvLu4OJBxoc,2441
|
|
84
84
|
moonshot/integrations/web_api/services/endpoint_service.py,sha256=N5SXNAh44UNeBpMhA9baL0VZoTx4sHzpy4y7-Ch8O4E,2395
|
|
85
85
|
moonshot/integrations/web_api/services/metric_service.py,sha256=xWC5Dk8aiU7tuHsxYedTTrEkbA3Ug1pV2nbaBas6cAg,456
|
|
86
86
|
moonshot/integrations/web_api/services/prompt_template_service.py,sha256=5ds7pKDB2R0_0slVDwsCRIpIVdsgpqhI-3wQqSYcpuE,1226
|
|
87
87
|
moonshot/integrations/web_api/services/recipe_service.py,sha256=Pa3mE7RPY950YpkrepeXlOD703CtZRy-N63jewndwP0,7539
|
|
88
88
|
moonshot/integrations/web_api/services/runner_service.py,sha256=_ljFTVtMzt3fxlY0l2252KTxgVsqoQB6vsOXBIY0PIU,4584
|
|
89
|
-
moonshot/integrations/web_api/services/session_service.py,sha256=
|
|
90
|
-
moonshot/integrations/web_api/services/utils/exceptions_handler.py,sha256=
|
|
89
|
+
moonshot/integrations/web_api/services/session_service.py,sha256=SrOAkz0zcbuNGta5rvYME5fQ6r5dFQl_euA4U5Iond8,13797
|
|
90
|
+
moonshot/integrations/web_api/services/utils/exceptions_handler.py,sha256=kAD88V6aoRJO6Ue_lNw-KC5o9SAnvgz12CdfKOs9HXA,2677
|
|
91
91
|
moonshot/integrations/web_api/services/utils/file_manager.py,sha256=Hym1DbTQw6ndj2vtbssqYsXifDKSx-OLemKdCS208AI,1545
|
|
92
|
-
moonshot/integrations/web_api/services/utils/results_formatter.py,sha256=
|
|
92
|
+
moonshot/integrations/web_api/services/utils/results_formatter.py,sha256=NDMVPcK-WlWuWWwFJhpiVW5D2sBkdTHlqx61fOn-0Bo,2416
|
|
93
93
|
moonshot/integrations/web_api/status_updater/moonshot_ui_webhook.py,sha256=ToyyCOEzArdMS9LnLixnCUNx4TWfib8XYEf6Pki9cr4,2804
|
|
94
|
-
moonshot/integrations/web_api/status_updater/interface/benchmark_progress_callback.py,sha256=
|
|
95
|
-
moonshot/integrations/web_api/status_updater/interface/redteam_progress_callback.py,sha256=
|
|
94
|
+
moonshot/integrations/web_api/status_updater/interface/benchmark_progress_callback.py,sha256=KcSTPrxKQXkg3XhHrUAjZbR0_si7CrUDBKXubKrbnmE,350
|
|
95
|
+
moonshot/integrations/web_api/status_updater/interface/redteam_progress_callback.py,sha256=ntuzxDJVVYmE6J9mTStyjUEL9T6ZHj03zv1mJBmSfJk,350
|
|
96
96
|
moonshot/integrations/web_api/temp/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
97
|
moonshot/integrations/web_api/types/types.py,sha256=zy1Jlqgju_F7Gb4SaJf7O70egH98D0b4DDCZ384HG2E,2408
|
|
98
98
|
moonshot/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -126,7 +126,7 @@ moonshot/src/connectors_endpoints/connector_endpoint.py,sha256=3U4030gKhvDt4e7VD
|
|
|
126
126
|
moonshot/src/connectors_endpoints/connector_endpoint_arguments.py,sha256=0v9mUHki4l22CK8o8UjATAsFDza9Lutbh4QplLiDXs8,2434
|
|
127
127
|
moonshot/src/cookbooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
128
|
moonshot/src/cookbooks/cookbook.py,sha256=DdZwRGx5-xTDIKcXtZRpp7Qb9Mm9dNGwXWLQXoQrBBo,10412
|
|
129
|
-
moonshot/src/cookbooks/cookbook_arguments.py,sha256=
|
|
129
|
+
moonshot/src/cookbooks/cookbook_arguments.py,sha256=_9e4yMnZyAsaqQ4ZQfwFekwFRmXEI5InW-pp1ld5SJ4,1444
|
|
130
130
|
moonshot/src/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
131
|
moonshot/src/datasets/dataset.py,sha256=sAPPdUJTB_aAFw3lmp2CY9gqbF2Mu8qQ9Soc1syMNGg,14940
|
|
132
132
|
moonshot/src/datasets/dataset_arguments.py,sha256=rUcxxo2WTcHhLLV-WoixjOfT_Ju7hFCq811_ctjegt8,1751
|
|
@@ -140,7 +140,7 @@ moonshot/src/recipes/recipe.py,sha256=PE4mimP7Y7lDanXib2uMrd9KpLWOxRdg0Cps5rLRQx
|
|
|
140
140
|
moonshot/src/recipes/recipe_arguments.py,sha256=9LdVJidB6Sci941QvnudBznvx9_NVCl8r-HvzSZInlY,3914
|
|
141
141
|
moonshot/src/redteaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
142
|
moonshot/src/redteaming/attack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
-
moonshot/src/redteaming/attack/attack_module.py,sha256=
|
|
143
|
+
moonshot/src/redteaming/attack/attack_module.py,sha256=T_YSfp3Y8y9l3nHkqvjS3seUlE5ljzMIwAeAVwCXic8,27992
|
|
144
144
|
moonshot/src/redteaming/attack/attack_module_arguments.py,sha256=L8H6poNj7xNWLUr6jfuSkwE7TNV0aTPaZBal4OvL7IA,1225
|
|
145
145
|
moonshot/src/redteaming/attack/context_strategy.py,sha256=KiAw85Pl8tuTzQ2d3CkZrjn3Ddp7BnlT5Gc67TTnq4M,4821
|
|
146
146
|
moonshot/src/redteaming/context_strategy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -172,9 +172,9 @@ moonshot/src/utils/import_modules.py,sha256=T9zTN59PFnvY2rjyWhSV9KSIAHxWV1pyBemF
|
|
|
172
172
|
moonshot/src/utils/log.py,sha256=YNgD7Eh2OT36XlmVBKCGUTAh9TRp4Akfe4kDdvHASgs,2502
|
|
173
173
|
moonshot/src/utils/pagination.py,sha256=5seymyRoqyENIhKllAatr1T91kMCGFslcvRnJHyMSvc,814
|
|
174
174
|
moonshot/src/utils/timeit.py,sha256=TvuF0w8KWhp0oZFY0cUU3UY0xlGKjchb0OkfYfgVTlc,866
|
|
175
|
-
aiverify_moonshot-0.6.
|
|
176
|
-
aiverify_moonshot-0.6.
|
|
177
|
-
aiverify_moonshot-0.6.
|
|
178
|
-
aiverify_moonshot-0.6.
|
|
179
|
-
aiverify_moonshot-0.6.
|
|
180
|
-
aiverify_moonshot-0.6.
|
|
175
|
+
aiverify_moonshot-0.6.3.dist-info/METADATA,sha256=eyeMqNTwKX5yimWX7I6790WFg8PFcM-ZQqSqkUYPHJk,12458
|
|
176
|
+
aiverify_moonshot-0.6.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
177
|
+
aiverify_moonshot-0.6.3.dist-info/licenses/AUTHORS.md,sha256=mmAbe3i3sT8JZHJMBhxp3i1xRehV0g7WB4T_eyIBuBs,59
|
|
178
|
+
aiverify_moonshot-0.6.3.dist-info/licenses/LICENSE.md,sha256=53izDRmJZZCjpYGfyLqlxnGQN-aNWBxasuzuMXC5Ias,11347
|
|
179
|
+
aiverify_moonshot-0.6.3.dist-info/licenses/NOTICES.md,sha256=3d1WLa7kMtzh79BXxXr-keSlvHo8Llb-5EkGgtRiMS0,51537
|
|
180
|
+
aiverify_moonshot-0.6.3.dist-info/RECORD,,
|