[tool.poetry] name = "agentic_security" version = "0.4.3" description = "Agentic LLM vulnerability scanner" authors = ["Alexander Miasoiedov "] maintainers = ["Alexander Miasoiedov "] repository = "https://github.com/msoedov/agentic_security" homepage = "https://github.com/msoedov/agentic_security" documentation = "https://github.com/msoedov/agentic_security/blob/main/README.md" license = "MIT" readme = "Readme.md" keywords = [ "LLM vulnerability scanner", "llm security", "llm adversarial attacks", "prompt injection", "prompt leakage", "prompt injection attacks", "prompt leakage prevention", "llm vulnerabilities", "owasp-llm-top-10", ] packages = [{ include = "agentic_security", from = "." }] [tool.poetry.scripts] agentic_security = "agentic_security.__main__:main" [tool.poetry.dependencies] python = "^3.11" fastapi = "^0.115.6" uvicorn = "^0.34.0" fire = "0.7.0" loguru = "^0.7.3" httpx = "^0.28.1" cache-to-disk = "^2.0.0" pandas = ">=1.4,<3.0" datasets = ">=1.14,<4.0" tabulate = ">=0.8.9,<0.10.0" colorama = "^0.4.4" matplotlib = "^3.9.2" pydantic = "2.10.6" scikit-optimize = "^0.10.2" scikit-learn = "1.6.1" numpy = ">=1.24.3,<3.0.0" jinja2 = "^3.1.4" python-multipart = "^0.0.20" tomli = "^2.2.1" rich = "13.9.4" # garak = { version = "*", optional = true } [tool.poetry.group.dev.dependencies] # Pytest pytest = "^8.3.4" pytest-asyncio = "^0.25.2" inline-snapshot = ">=0.13.3,<0.21.0" pytest-httpx = "^0.35.0" pytest-mock = "^3.14.0" # Rest black = ">=24.10,<26.0" mypy = "^1.12.0" pre-commit = "^4.0.1" huggingface-hub = ">=0.25.1,<0.29.0" # Docs mkdocs = ">=1.4.2" mkdocs-material = ">=8.5.10" mkdocstrings = ">=0.26.1" mkdocs-jupyter = ">=0.25.1" [tool.ruff] line-length = 120 [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.pytest.ini_options] asyncio_mode = "auto" asyncio_default_fixture_loop_scope = "function"