-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "metAIsploit-assistant"
version = "0.1.0"
description = "Use LLMs and open source models to generate metaploit modules from published CVEs"
authors = ["Atilla"]
license = "BSD 2-Clause License"
readme = "README.md"
packages = [{include = "metAIsploit_assistant"}]
[tool.poetry.dependencies]
python = "^3.11"
gymnasium = "^0.29.1"
poetry-exec-plugin = "^1.0.1"
pydantic = "^2.7.1"
pyyaml = "^6.0.1"
huggingface-hub = "^0.23.0"
langchain = "^0.3.26"
gpt4all = "^2.8.2"
beautifulsoup4 = "^4.12.3"
transformers = "^4.41.2"
tokenizers = "^0.19.1"
accelerate = "^0.30.1"
torch = "^2.3.1"
pymetasploit3 = "^1.0.5"
langchain-community = "^0.3.27"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
[tool.poetry-exec-plugin.commands]
lint = "black ."
[tool.poetry.scripts]
init = "metAIsploit_assistant.utilities.models:get_models_inventory"
chat = "metAIsploit_assistant.actions.chat:perform_chat"
demo = "examples.explicit_poc:main"
prompt-demo = "examples.explicit_poc:poetry_run_prompt_demo"
generate-prompts = "metAIsploit_assistant.utilities.gatherers:get_full_prompt_list_for_msf"
metai = "metAIsploit_assistant.utilities.recon_pipeline:main"
[build-system]
requires = ["poetry-core>=1.9.0,<2.0.0"]
build-backend = "poetry.core.masonry.api"