Skip to content

Commit 5f473f1

Browse files
committed
bump version; add contributors
1 parent bb656a3 commit 5f473f1

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

docs/source/cliref.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CLI reference for garak
33

44
::
55

6-
garak LLM vulnerability scanner v0.9.0.15 ( https://github.com/leondz/garak ) at 2024-08-13T17:36:13.248824
6+
garak LLM vulnerability scanner v0.9.0.16 ( https://github.com/leondz/garak ) at 2024-09-06T15:51:58.207983
77
usage: python -m garak [-h] [--verbose] [--report_prefix REPORT_PREFIX]
88
[--narrow_output]
99
[--parallel_requests PARALLEL_REQUESTS]
@@ -13,8 +13,8 @@ CLI reference for garak
1313
[--generations GENERATIONS] [--config CONFIG]
1414
[--model_type MODEL_TYPE] [--model_name MODEL_NAME]
1515
[--generator_option_file GENERATOR_OPTION_FILE | --generator_options GENERATOR_OPTIONS]
16-
[--probes PROBES]
17-
[--probe_option_file PROBE_OPTION_FILE | --probe_options PROBE_OPTIONS | --probe_tags PROBE_TAGS]
16+
[--probes PROBES] [--probe_tags PROBE_TAGS]
17+
[--probe_option_file PROBE_OPTION_FILE | --probe_options PROBE_OPTIONS]
1818
[--detectors DETECTORS] [--extended_detectors]
1919
[--buffs BUFFS] [--taxonomy TAXONOMY]
2020
[--plugin_info PLUGIN_INFO] [--list_probes]
@@ -59,13 +59,13 @@ CLI reference for garak
5959
--probes PROBES, -p PROBES
6060
list of probe names to use, or 'all' for all
6161
(default).
62+
--probe_tags PROBE_TAGS
63+
only include probes with a tag that starts with this
64+
value (e.g. owasp:llm01)
6265
--probe_option_file PROBE_OPTION_FILE, -P PROBE_OPTION_FILE
6366
path to JSON file containing options to pass to probes
6467
--probe_options PROBE_OPTIONS
6568
options to pass to probes, formatted as a JSON dict
66-
--probe_tags PROBE_TAGS
67-
only include probes with a tag that starts with this
68-
value (e.g. owasp:llm01)
6969
--detectors DETECTORS, -d DETECTORS
7070
list of detectors to use, or 'all' for all. Default is
7171
to use the probe's suggestion.

garak/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Top-level package for garak"""
22

3-
__version__ = "0.9.0.15.post1"
3+
__version__ = "0.9.0.16"
44
__app__ = "garak"
55
__description__ = "LLM vulnerability scanner"

pyproject.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "garak"
7-
version = "0.9.0.15.post1"
7+
version = "0.9.0.16"
88
authors = [
99
{ name = "Leon Derczynski", email="[email protected]" },
1010
{ name = "Subho Majumdar", email="[email protected]" },
@@ -23,6 +23,10 @@ authors = [
2323
{ name = "Oh Tien Cheng" },
2424
{ name = "Brain John" },
2525
{ name = "Naman Mishra" },
26+
{ name = "Soumili Nandi" },
27+
{ name = "Arjun Krishna" },
28+
{ name = "Mihailo Milenkovic" },
29+
{ name = "Kai Greshake" },
2630
]
2731
license = { file = "LICENSE" }
2832
description = "LLM vulnerability scanner"

0 commit comments

Comments
 (0)