Skip to content

Commit

Permalink
bump v to 0.9.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
leondz committed Dec 20, 2023
1 parent d493a1e commit f5e381c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 17 deletions.
38 changes: 23 additions & 15 deletions docs/source/cliref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@ CLI reference for garak

::

garak LLM security probe v0.9.0.9 ( https://github.com/leondz/garak ) at 2023-12-08T14:24:07.990707
usage: __main__.py [-h] [--verbose] [--report_prefix REPORT_PREFIX]
[--narrow_output] [--parallel_requests PARALLEL_REQUESTS]
[--parallel_attempts PARALLEL_ATTEMPTS] [--seed SEED]
[--deprefix] [--eval_threshold EVAL_THRESHOLD]
[--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]
[--detectors DETECTORS] [--extended_detectors]
[--buff BUFF] [--plugin_info PLUGIN_INFO] [--list_probes]
[--list_detectors] [--list_generators] [--list_buffs]
[--list_config] [--version] [--report REPORT]
[--interactive] [--generate_autodan] [--interactive.py]
garak LLM security probe v0.9.0.9.post1 ( https://github.com/leondz/garak ) at 2023-12-20T14:18:27.371652
usage: python -m garak [-h] [--verbose] [--report_prefix REPORT_PREFIX]
[--narrow_output]
[--parallel_requests PARALLEL_REQUESTS]
[--parallel_attempts PARALLEL_ATTEMPTS] [--seed SEED]
[--deprefix] [--eval_threshold EVAL_THRESHOLD]
[--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]
[--detectors DETECTORS] [--extended_detectors]
[--buff BUFF] [--taxonomy TAXONOMY]
[--plugin_info PLUGIN_INFO] [--list_probes]
[--list_detectors] [--list_generators] [--list_buffs]
[--list_config] [--version] [--report REPORT]
[--interactive] [--generate_autodan] [--interactive.py]
LLM safety & security scanning tool
Expand Down Expand Up @@ -59,13 +61,19 @@ CLI reference for garak
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.
--extended_detectors If detectors aren't specified on the command line,
should we run all detectors? (default is just the
primary detector, if given, else everything)
--buff BUFF, -b BUFF buff to use
--taxonomy TAXONOMY specify a MISP top-level taxonomy to be used for
grouping probes in reporting. e.g. 'avid-effect',
'owasp'
--plugin_info PLUGIN_INFO
show info about one plugin; format as
type.plugin.class, e.g. probes.lmrc.Profanity
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.9.post1"
__version__ = "0.9.0.10"
__app__ = "garak"
__description__ = "LLM security probe"
2 changes: 1 addition & 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.9.post1"
version = "0.9.0.10"
authors = [
{ name = "Leon Derczynski", email="leonderczynski@gmail.com" },
{ name = "Subho Majumdar" },
Expand Down

0 comments on commit f5e381c

Please sign in to comment.