Skip to content

Commit

Permalink
bump version; add contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
leondz committed Sep 6, 2024
1 parent bb656a3 commit 5f473f1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
12 changes: 6 additions & 6 deletions docs/source/cliref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CLI reference for garak

::

garak LLM vulnerability scanner v0.9.0.15 ( https://github.com/leondz/garak ) at 2024-08-13T17:36:13.248824
garak LLM vulnerability scanner v0.9.0.16 ( https://github.com/leondz/garak ) at 2024-09-06T15:51:58.207983
usage: python -m garak [-h] [--verbose] [--report_prefix REPORT_PREFIX]
[--narrow_output]
[--parallel_requests PARALLEL_REQUESTS]
Expand All @@ -13,8 +13,8 @@ CLI reference for garak
[--generations GENERATIONS] [--config CONFIG]
[--model_type MODEL_TYPE] [--model_name MODEL_NAME]
[--generator_option_file GENERATOR_OPTION_FILE | --generator_options GENERATOR_OPTIONS]
[--probes PROBES]
[--probe_option_file PROBE_OPTION_FILE | --probe_options PROBE_OPTIONS | --probe_tags PROBE_TAGS]
[--probes PROBES] [--probe_tags PROBE_TAGS]
[--probe_option_file PROBE_OPTION_FILE | --probe_options PROBE_OPTIONS]
[--detectors DETECTORS] [--extended_detectors]
[--buffs BUFFS] [--taxonomy TAXONOMY]
[--plugin_info PLUGIN_INFO] [--list_probes]
Expand Down Expand Up @@ -59,13 +59,13 @@ CLI reference for garak
--probes PROBES, -p PROBES
list of probe names to use, or 'all' for all
(default).
--probe_tags PROBE_TAGS
only include probes with a tag that starts with this
value (e.g. owasp:llm01)
--probe_option_file PROBE_OPTION_FILE, -P PROBE_OPTION_FILE
path to JSON file containing options to pass to probes
--probe_options PROBE_OPTIONS
options to pass to probes, formatted as a JSON dict
--probe_tags PROBE_TAGS
only include probes with a tag that starts with this
value (e.g. owasp:llm01)
--detectors DETECTORS, -d DETECTORS
list of detectors to use, or 'all' for all. Default is
to use the probe's suggestion.
Expand Down
2 changes: 1 addition & 1 deletion garak/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Top-level package for garak"""

__version__ = "0.9.0.15.post1"
__version__ = "0.9.0.16"
__app__ = "garak"
__description__ = "LLM vulnerability scanner"
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "garak"
version = "0.9.0.15.post1"
version = "0.9.0.16"
authors = [
{ name = "Leon Derczynski", email="[email protected]" },
{ name = "Subho Majumdar", email="[email protected]" },
Expand All @@ -23,6 +23,10 @@ authors = [
{ name = "Oh Tien Cheng" },
{ name = "Brain John" },
{ name = "Naman Mishra" },
{ name = "Soumili Nandi" },
{ name = "Arjun Krishna" },
{ name = "Mihailo Milenkovic" },
{ name = "Kai Greshake" },
]
license = { file = "LICENSE" }
description = "LLM vulnerability scanner"
Expand Down

0 comments on commit 5f473f1

Please sign in to comment.