aiverify-moonshot 0.4.3__tar.gz → 0.4.4__tar.gz

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.
Files changed (188) hide show
  1. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/PKG-INFO +12 -10
  2. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/README.md +1 -1
  3. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/app.py +1 -1
  4. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/pyproject.toml +20 -16
  5. aiverify_moonshot-0.4.4/requirements.txt +59 -0
  6. aiverify_moonshot-0.4.3/requirements.txt +0 -32
  7. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/.coveragerc +0 -0
  8. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/.flake8 +0 -0
  9. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/.github/pull_request_template.md +0 -0
  10. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/.github/workflows/sca_scan.yaml +0 -0
  11. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/.github/workflows/smoke-test.yaml +0 -0
  12. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/.gitignore +0 -0
  13. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/.pre-commit-config.yaml +0 -0
  14. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/AUTHORS.md +0 -0
  15. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/LICENSE.md +0 -0
  16. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/NOTICES.md +0 -0
  17. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/__init__.py +0 -0
  18. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/__main__.py +0 -0
  19. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/api.py +0 -0
  20. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/__init__.py +0 -0
  21. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/__init__.py +0 -0
  22. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/__main__.py +0 -0
  23. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/active_session_cfg.py +0 -0
  24. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/__init__.py +0 -0
  25. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/benchmark.py +0 -0
  26. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/cookbook.py +0 -0
  27. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/datasets.py +0 -0
  28. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/metrics.py +0 -0
  29. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/recipe.py +0 -0
  30. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/result.py +0 -0
  31. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/run.py +0 -0
  32. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/benchmark/runner.py +0 -0
  33. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/cli.py +0 -0
  34. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/common/__init__.py +0 -0
  35. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/common/common.py +0 -0
  36. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/common/connectors.py +0 -0
  37. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/common/dataset.py +0 -0
  38. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/common/display_helper.py +0 -0
  39. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/common/prompt_template.py +0 -0
  40. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/initialisation/__init__.py +0 -0
  41. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/initialisation/initialisation.py +0 -0
  42. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/redteam/__init__.py +0 -0
  43. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/redteam/attack_module.py +0 -0
  44. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/redteam/context_strategy.py +0 -0
  45. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/redteam/prompt_template.py +0 -0
  46. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/redteam/redteam.py +0 -0
  47. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/redteam/session.py +0 -0
  48. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/cli/utils/process_data.py +0 -0
  49. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/.env.dev +0 -0
  50. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/__init__.py +0 -0
  51. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/__main__.py +0 -0
  52. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/container.py +0 -0
  53. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/log/.gitkeep +0 -0
  54. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/logging_conf.py +0 -0
  55. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/__init__.py +0 -0
  56. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/attack_modules.py +0 -0
  57. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/benchmark.py +0 -0
  58. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/benchmark_result.py +0 -0
  59. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/bookmark.py +0 -0
  60. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/context_strategy.py +0 -0
  61. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/cookbook.py +0 -0
  62. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/dataset.py +0 -0
  63. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/endpoint.py +0 -0
  64. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/metric.py +0 -0
  65. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/prompt_template.py +0 -0
  66. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/recipe.py +0 -0
  67. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/redteam.py +0 -0
  68. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/routes/runner.py +0 -0
  69. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/__init__.py +0 -0
  70. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/benchmark_runner_dto.py +0 -0
  71. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/bookmark_create_dto.py +0 -0
  72. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/cookbook_create_dto.py +0 -0
  73. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/cookbook_response_model.py +0 -0
  74. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/dataset_create_dto.py +0 -0
  75. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/dataset_response_dto.py +0 -0
  76. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/endpoint_create_dto.py +0 -0
  77. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/endpoint_response_model.py +0 -0
  78. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/prompt_response_model.py +0 -0
  79. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/prompt_template_response_model.py +0 -0
  80. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/recipe_create_dto.py +0 -0
  81. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/recipe_response_model.py +0 -0
  82. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/session_create_dto.py +0 -0
  83. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/session_prompt_dto.py +0 -0
  84. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/schemas/session_response_model.py +0 -0
  85. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/__init__.py +0 -0
  86. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/attack_module_service.py +0 -0
  87. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/auto_red_team_test_manager.py +0 -0
  88. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/auto_red_team_test_state.py +0 -0
  89. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/base_service.py +0 -0
  90. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/benchmark_result_service.py +0 -0
  91. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/benchmark_test_manager.py +0 -0
  92. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/benchmark_test_state.py +0 -0
  93. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/benchmarking_service.py +0 -0
  94. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/bookmark_service.py +0 -0
  95. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/context_strategy_service.py +0 -0
  96. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/cookbook_service.py +0 -0
  97. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/dataset_service.py +0 -0
  98. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/endpoint_service.py +0 -0
  99. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/metric_service.py +0 -0
  100. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/prompt_template_service.py +0 -0
  101. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/recipe_service.py +0 -0
  102. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/runner_service.py +0 -0
  103. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/session_service.py +0 -0
  104. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/utils/exceptions_handler.py +0 -0
  105. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/utils/file_manager.py +0 -0
  106. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/services/utils/results_formatter.py +0 -0
  107. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/status_updater/interface/benchmark_progress_callback.py +0 -0
  108. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/status_updater/interface/redteam_progress_callback.py +0 -0
  109. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/status_updater/moonshot_ui_webhook.py +0 -0
  110. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/temp/.gitkeep +0 -0
  111. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/integrations/web_api/types/types.py +0 -0
  112. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/__init__.py +0 -0
  113. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/__init__.py +0 -0
  114. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_bookmark.py +0 -0
  115. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_connector.py +0 -0
  116. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_connector_endpoint.py +0 -0
  117. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_context_strategy.py +0 -0
  118. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_cookbook.py +0 -0
  119. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_dataset.py +0 -0
  120. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_environment_variables.py +0 -0
  121. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_metrics.py +0 -0
  122. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_prompt_template.py +0 -0
  123. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_recipe.py +0 -0
  124. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_red_teaming.py +0 -0
  125. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_result.py +0 -0
  126. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_run.py +0 -0
  127. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_runner.py +0 -0
  128. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/api/api_session.py +0 -0
  129. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/bookmark/bookmark.py +0 -0
  130. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/bookmark/bookmark_arguments.py +0 -0
  131. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/configs/__init__.py +0 -0
  132. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/configs/env_variables.py +0 -0
  133. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/connectors/__init__.py +0 -0
  134. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/connectors/connector.py +0 -0
  135. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/connectors/connector_prompt_arguments.py +0 -0
  136. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/connectors_endpoints/__init__.py +0 -0
  137. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/connectors_endpoints/connector_endpoint.py +0 -0
  138. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/connectors_endpoints/connector_endpoint_arguments.py +0 -0
  139. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/cookbooks/__init__.py +0 -0
  140. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/cookbooks/cookbook.py +0 -0
  141. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/cookbooks/cookbook_arguments.py +0 -0
  142. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/datasets/__init__.py +0 -0
  143. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/datasets/dataset.py +0 -0
  144. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/datasets/dataset_arguments.py +0 -0
  145. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/metrics/__init__.py +0 -0
  146. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/metrics/metric.py +0 -0
  147. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/metrics/metric_interface.py +0 -0
  148. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/prompt_templates/__init__.py +0 -0
  149. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/prompt_templates/prompt_template.py +0 -0
  150. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/recipes/__init__.py +0 -0
  151. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/recipes/recipe.py +0 -0
  152. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/recipes/recipe_arguments.py +0 -0
  153. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/__init__.py +0 -0
  154. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/attack/__init__.py +0 -0
  155. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/attack/attack_module.py +0 -0
  156. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/attack/attack_module_arguments.py +0 -0
  157. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/attack/context_strategy.py +0 -0
  158. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/context_strategy/__init__.py +0 -0
  159. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/context_strategy/context_strategy_interface.py +0 -0
  160. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/session/__init__.py +0 -0
  161. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/session/chat.py +0 -0
  162. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/session/red_teaming_progress.py +0 -0
  163. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/session/red_teaming_type.py +0 -0
  164. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/redteaming/session/session.py +0 -0
  165. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/results/__init__.py +0 -0
  166. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/results/result.py +0 -0
  167. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/results/result_arguments.py +0 -0
  168. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runners/__init__.py +0 -0
  169. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runners/runner.py +0 -0
  170. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runners/runner_arguments.py +0 -0
  171. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runners/runner_type.py +0 -0
  172. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runs/__init__.py +0 -0
  173. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runs/run.py +0 -0
  174. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runs/run_arguments.py +0 -0
  175. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runs/run_progress.py +0 -0
  176. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/runs/run_status.py +0 -0
  177. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/storage/__init__.py +0 -0
  178. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/storage/db_interface.py +0 -0
  179. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/storage/io_interface.py +0 -0
  180. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/storage/storage.py +0 -0
  181. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/utils/__init__.py +0 -0
  182. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/utils/find_feature.py +0 -0
  183. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/utils/import_modules.py +0 -0
  184. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/utils/log.py +0 -0
  185. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/utils/pagination.py +0 -0
  186. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/moonshot/src/utils/timeit.py +0 -0
  187. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/third-party/pygments-2.18.0-py3-none-any.whl +0 -0
  188. {aiverify_moonshot-0.4.3 → aiverify_moonshot-0.4.4}/third-party/text_unidecode-1.3-py2.py3-none-any.whl +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: aiverify-moonshot
3
- Version: 0.4.3
3
+ Version: 0.4.4
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,9 +15,11 @@ 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: ijson==3.2.3
18
+ Requires-Dist: datasets==2.20.0
19
+ Requires-Dist: ijson==3.3.0
19
20
  Requires-Dist: jinja2==3.1.4
20
- Requires-Dist: pydantic==2.7.1
21
+ Requires-Dist: pandas==2.2.2
22
+ Requires-Dist: pydantic==2.8.2
21
23
  Requires-Dist: pyparsing==3.1.2
22
24
  Requires-Dist: python-dotenv==1.0.1
23
25
  Requires-Dist: python-slugify==8.0.4
@@ -25,25 +27,25 @@ Requires-Dist: xxhash==3.4.1
25
27
  Provides-Extra: all
26
28
  Requires-Dist: cmd2==2.4.3; extra == 'all'
27
29
  Requires-Dist: dependency-injector==4.41.0; extra == 'all'
28
- Requires-Dist: fastapi==0.110.3; extra == 'all'
30
+ Requires-Dist: fastapi==0.112.0; extra == 'all'
29
31
  Requires-Dist: rich==13.7.1; extra == 'all'
30
- Requires-Dist: typing-extensions==4.12.0; extra == 'all'
31
- Requires-Dist: uvicorn==0.29.0; extra == 'all'
32
+ Requires-Dist: typing-extensions==4.12.2; extra == 'all'
33
+ Requires-Dist: uvicorn==0.30.5; extra == 'all'
32
34
  Provides-Extra: cli
33
35
  Requires-Dist: cmd2==2.4.3; extra == 'cli'
34
36
  Requires-Dist: rich==13.7.1; extra == 'cli'
35
37
  Provides-Extra: web-api
36
38
  Requires-Dist: dependency-injector==4.41.0; extra == 'web-api'
37
- Requires-Dist: fastapi==0.110.3; extra == 'web-api'
38
- Requires-Dist: typing-extensions==4.12.0; extra == 'web-api'
39
- Requires-Dist: uvicorn==0.29.0; extra == 'web-api'
39
+ Requires-Dist: fastapi==0.112.0; extra == 'web-api'
40
+ Requires-Dist: typing-extensions==4.12.2; extra == 'web-api'
41
+ Requires-Dist: uvicorn==0.30.5; extra == 'web-api'
40
42
  Description-Content-Type: text/markdown
41
43
 
42
44
  <div align="center">
43
45
 
44
46
  ![Moonshot Logo](https://github.com/aiverify-foundation/moonshot/raw/main/misc/aiverify-moonshot-logo.png)
45
47
 
46
- **Version 0.4.3**
48
+ **Version 0.4.4**
47
49
 
48
50
  A simple and modular tool to evaluate any LLM application.
49
51
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![Moonshot Logo](https://github.com/aiverify-foundation/moonshot/raw/main/misc/aiverify-moonshot-logo.png)
4
4
 
5
- **Version 0.4.3**
5
+ **Version 0.4.4**
6
6
 
7
7
  A simple and modular tool to evaluate any LLM application.
8
8
 
@@ -71,7 +71,7 @@ def create_app(cfg: providers.Configuration) -> CustomFastAPI:
71
71
  }
72
72
 
73
73
  app: CustomFastAPI = CustomFastAPI(
74
- title="Project Moonshot", version="0.4.3", **app_kwargs
74
+ title="Project Moonshot", version="0.4.4", **app_kwargs
75
75
  )
76
76
 
77
77
  if cfg.cors.enabled():
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "aiverify-moonshot"
7
- version = "0.4.3"
7
+ version = "0.4.4"
8
8
  authors = [
9
9
  { name="AI Verify Foundation", email="info@aiverify.sg" }
10
10
  ]
@@ -21,18 +21,20 @@ classifiers = [
21
21
  dependencies = [
22
22
  "python-slugify==8.0.4",
23
23
  "python-dotenv==1.0.1",
24
- "ijson==3.2.3",
24
+ "ijson==3.3.0",
25
25
  "jinja2==3.1.4",
26
- "pydantic==2.7.1",
26
+ "datasets==2.20.0",
27
+ "pandas==2.2.2",
28
+ "pydantic==2.8.2",
27
29
  "pyparsing==3.1.2",
28
30
  "xxhash==3.4.1"
29
31
  ]
30
32
 
31
33
  [project.optional-dependencies]
32
34
  web-api = [
33
- "typing-extensions==4.12.0",
34
- "fastapi==0.110.3",
35
- "uvicorn==0.29.0",
35
+ "typing-extensions==4.12.2",
36
+ "fastapi==0.112.0",
37
+ "uvicorn==0.30.5",
36
38
  "dependency-injector==4.41.0",
37
39
  ]
38
40
  cli = [
@@ -94,7 +96,7 @@ allow-direct-references = true
94
96
 
95
97
  [tool.poetry]
96
98
  name = "aiverify-moonshot"
97
- version = "0.4.3"
99
+ version = "0.4.4"
98
100
  description = "A simple and modular tool to evaluate and red-team any LLM application."
99
101
  authors = ["The Moonshot Team <our.moonshot.team@gmail.com>"]
100
102
  readme = "README.md"
@@ -103,28 +105,30 @@ readme = "README.md"
103
105
  python = ">=3.11,<3.12"
104
106
  python-slugify = "8.0.4"
105
107
  python-dotenv = "1.0.1"
106
- ijson = "3.2.3"
108
+ ijson = "3.3.0"
107
109
  jinja2 = "3.1.4"
108
- pydantic = "2.7.2"
110
+ pydantic = "2.8.2"
109
111
  pyparsing = "3.1.2"
110
112
  xxhash = "3.4.1"
111
- typing-extensions = "4.12.0"
112
- fastapi = "0.110.3"
113
- uvicorn = "0.30.0"
113
+ typing-extensions = "4.12.2"
114
+ fastapi = "0.112.0"
115
+ uvicorn = "0.30.5"
114
116
  dependency-injector = "4.41.0"
115
117
  cmd2 = "2.4.3"
116
118
  rich = "13.7.1"
119
+ pandas = "2.2.2"
120
+ datasets = "2.20.0"
117
121
 
118
122
  [tool.poetry.group.dev.dependencies]
119
- black = "^24.4.2"
123
+ black = "^24.8.0"
120
124
  isort = "^5.13.2"
121
- pre-commit = "^3.7.1"
122
- pytest = "^8.3.1"
125
+ pre-commit = "^3.8.0"
126
+ pytest = "^8.3.2"
123
127
  coverage = "^7.6.0"
124
128
  pytest-mock = "^3.14.0"
125
129
  flake8 = "^7.1.0"
126
130
  poetry-plugin-export = "^1.8.0"
127
- pyinstrument = "^4.6.2"
131
+ pyinstrument = "^4.7.1"
128
132
  anybadge = "^1.14.0"
129
133
  pytest-cov = "^5.0.0"
130
134
  pytest-html = "^4.1.1"
@@ -0,0 +1,59 @@
1
+ aiohappyeyeballs==2.3.4 ; python_version >= "3.11" and python_version < "3.12"
2
+ aiohttp==3.10.0 ; python_version >= "3.11" and python_version < "3.12"
3
+ aiosignal==1.3.1 ; python_version >= "3.11" and python_version < "3.12"
4
+ annotated-types==0.7.0 ; python_version >= "3.11" and python_version < "3.12"
5
+ anyio==4.4.0 ; python_version >= "3.11" and python_version < "3.12"
6
+ attrs==23.2.0 ; python_version >= "3.11" and python_version < "3.12"
7
+ certifi==2024.7.4 ; python_version >= "3.11" and python_version < "3.12"
8
+ charset-normalizer==3.3.2 ; python_version >= "3.11" and python_version < "3.12"
9
+ click==8.1.7 ; python_version >= "3.11" and python_version < "3.12"
10
+ cmd2==2.4.3 ; python_version >= "3.11" and python_version < "3.12"
11
+ colorama==0.4.6 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Windows"
12
+ datasets==2.20.0 ; python_version >= "3.11" and python_version < "3.12"
13
+ dependency-injector==4.41.0 ; python_version >= "3.11" and python_version < "3.12"
14
+ dill==0.3.8 ; python_version >= "3.11" and python_version < "3.12"
15
+ fastapi==0.112.0 ; python_version >= "3.11" and python_version < "3.12"
16
+ filelock==3.15.4 ; python_version >= "3.11" and python_version < "3.12"
17
+ frozenlist==1.4.1 ; python_version >= "3.11" and python_version < "3.12"
18
+ fsspec==2024.5.0 ; python_version >= "3.11" and python_version < "3.12"
19
+ fsspec[http]==2024.5.0 ; python_version >= "3.11" and python_version < "3.12"
20
+ h11==0.14.0 ; python_version >= "3.11" and python_version < "3.12"
21
+ huggingface-hub==0.24.5 ; python_version >= "3.11" and python_version < "3.12"
22
+ idna==3.7 ; python_version >= "3.11" and python_version < "3.12"
23
+ ijson==3.3.0 ; python_version >= "3.11" and python_version < "3.12"
24
+ jinja2==3.1.4 ; python_version >= "3.11" and python_version < "3.12"
25
+ markdown-it-py==3.0.0 ; python_version >= "3.11" and python_version < "3.12"
26
+ markupsafe==2.1.5 ; python_version >= "3.11" and python_version < "3.12"
27
+ mdurl==0.1.2 ; python_version >= "3.11" and python_version < "3.12"
28
+ multidict==6.0.5 ; python_version >= "3.11" and python_version < "3.12"
29
+ multiprocess==0.70.16 ; python_version >= "3.11" and python_version < "3.12"
30
+ numpy==2.0.1 ; python_version >= "3.11" and python_version < "3.12"
31
+ packaging==24.1 ; python_version >= "3.11" and python_version < "3.12"
32
+ pandas==2.2.2 ; python_version >= "3.11" and python_version < "3.12"
33
+ pyarrow-hotfix==0.6 ; python_version >= "3.11" and python_version < "3.12"
34
+ pyarrow==17.0.0 ; python_version >= "3.11" and python_version < "3.12"
35
+ pydantic-core==2.20.1 ; python_version >= "3.11" and python_version < "3.12"
36
+ pydantic==2.8.2 ; python_version >= "3.11" and python_version < "3.12"
37
+ pygments==2.18.0 ; python_version >= "3.11" and python_version < "3.12"
38
+ pyparsing==3.1.2 ; python_version >= "3.11" and python_version < "3.12"
39
+ pyperclip==1.9.0 ; python_version >= "3.11" and python_version < "3.12"
40
+ pyreadline3==3.4.1 ; python_version >= "3.11" and python_version < "3.12" and sys_platform == "win32"
41
+ python-dateutil==2.9.0.post0 ; python_version >= "3.11" and python_version < "3.12"
42
+ python-dotenv==1.0.1 ; python_version >= "3.11" and python_version < "3.12"
43
+ python-slugify==8.0.4 ; python_version >= "3.11" and python_version < "3.12"
44
+ pytz==2024.1 ; python_version >= "3.11" and python_version < "3.12"
45
+ pyyaml==6.0.1 ; python_version >= "3.11" and python_version < "3.12"
46
+ requests==2.32.3 ; python_version >= "3.11" and python_version < "3.12"
47
+ rich==13.7.1 ; python_version >= "3.11" and python_version < "3.12"
48
+ six==1.16.0 ; python_version >= "3.11" and python_version < "3.12"
49
+ sniffio==1.3.1 ; python_version >= "3.11" and python_version < "3.12"
50
+ starlette==0.37.2 ; python_version >= "3.11" and python_version < "3.12"
51
+ text-unidecode==1.3 ; python_version >= "3.11" and python_version < "3.12"
52
+ tqdm==4.66.4 ; python_version >= "3.11" and python_version < "3.12"
53
+ typing-extensions==4.12.2 ; python_version >= "3.11" and python_version < "3.12"
54
+ tzdata==2024.1 ; python_version >= "3.11" and python_version < "3.12"
55
+ urllib3==2.2.2 ; python_version >= "3.11" and python_version < "3.12"
56
+ uvicorn==0.30.5 ; python_version >= "3.11" and python_version < "3.12"
57
+ wcwidth==0.2.13 ; python_version >= "3.11" and python_version < "3.12"
58
+ xxhash==3.4.1 ; python_version >= "3.11" and python_version < "3.12"
59
+ yarl==1.9.4 ; python_version >= "3.11" and python_version < "3.12"
@@ -1,32 +0,0 @@
1
- annotated-types==0.7.0 ; python_version >= "3.11" and python_version < "3.12"
2
- anyio==4.4.0 ; python_version >= "3.11" and python_version < "3.12"
3
- attrs==23.2.0 ; python_version >= "3.11" and python_version < "3.12"
4
- click==8.1.7 ; python_version >= "3.11" and python_version < "3.12"
5
- cmd2==2.4.3 ; python_version >= "3.11" and python_version < "3.12"
6
- colorama==0.4.6 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Windows"
7
- dependency-injector==4.41.0 ; python_version >= "3.11" and python_version < "3.12"
8
- fastapi==0.110.3 ; python_version >= "3.11" and python_version < "3.12"
9
- h11==0.14.0 ; python_version >= "3.11" and python_version < "3.12"
10
- idna==3.7 ; python_version >= "3.11" and python_version < "3.12"
11
- ijson==3.2.3 ; python_version >= "3.11" and python_version < "3.12"
12
- jinja2==3.1.4 ; python_version >= "3.11" and python_version < "3.12"
13
- markdown-it-py==3.0.0 ; python_version >= "3.11" and python_version < "3.12"
14
- markupsafe==2.1.5 ; python_version >= "3.11" and python_version < "3.12"
15
- mdurl==0.1.2 ; python_version >= "3.11" and python_version < "3.12"
16
- pydantic-core==2.18.3 ; python_version >= "3.11" and python_version < "3.12"
17
- pydantic==2.7.2 ; python_version >= "3.11" and python_version < "3.12"
18
- pygments==2.18.0 ; python_version >= "3.11" and python_version < "3.12"
19
- pyparsing==3.1.2 ; python_version >= "3.11" and python_version < "3.12"
20
- pyperclip==1.8.2 ; python_version >= "3.11" and python_version < "3.12"
21
- pyreadline3==3.4.1 ; python_version >= "3.11" and python_version < "3.12" and sys_platform == "win32"
22
- python-dotenv==1.0.1 ; python_version >= "3.11" and python_version < "3.12"
23
- python-slugify==8.0.4 ; python_version >= "3.11" and python_version < "3.12"
24
- rich==13.7.1 ; python_version >= "3.11" and python_version < "3.12"
25
- six==1.16.0 ; python_version >= "3.11" and python_version < "3.12"
26
- sniffio==1.3.1 ; python_version >= "3.11" and python_version < "3.12"
27
- starlette==0.37.2 ; python_version >= "3.11" and python_version < "3.12"
28
- text-unidecode==1.3 ; python_version >= "3.11" and python_version < "3.12"
29
- typing-extensions==4.12.0 ; python_version >= "3.11" and python_version < "3.12"
30
- uvicorn==0.30.0 ; python_version >= "3.11" and python_version < "3.12"
31
- wcwidth==0.2.13 ; python_version >= "3.11" and python_version < "3.12"
32
- xxhash==3.4.1 ; python_version >= "3.11" and python_version < "3.12"