forked from protectai/llm-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
135 lines (126 loc) · 4.14 KB
/
mkdocs.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
site_name: LLM Guard
site_author: Laiyer.AI
site_description: LLM-Guard is a comprehensive tool designed to fortify the security of Large Language Models (LLMs).
site_url: https://laiyer.ai
repo_url: https://github.com/laiyer-ai/llm-guard
repo_name: laiyer-ai/llm-guard
edit_uri: ""
copyright: |
Maintained by <a href="https://laiyer.ai">Laiyer.AI</a>.
theme:
name: material
favicon: img/favicon.ico
logo: img/logo.png
icon:
repo: fontawesome/brands/github
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
features:
- navigation.instant
- navigation.tracking
- content.code.annotate
- toc.follow
palette:
- scheme: default
primary: black
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: black
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight
- pymdownx.tabbed
- pymdownx.tasklist
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- tables
- def_list
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
show_source: false
show_bases: false
show_if_no_docstring: true
merge_init_into_class: true
show_root_toc_entry: false
show_inheritance: true # This is no longer a valid option
inherited_members: true # This might be the replacement?
# The below are now filters in the MD file
# https://mkdocstrings.github.io/python/usage/configuration/members/#filters
show_private: false # This is no longer a valid option
show_special_members: false # This is no longer a valid option
# Newly added options
annotations_path: brief
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/laiyer_ai
- icon: fontawesome/brands/github
link: https://github.com/laiyer-ai
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/98454520
- icon: fontawesome/solid/globe
link: https://laiyer.ai
analytics:
provider: google
property: G-B76J8KGG5Z
nav:
- Home: index.md
- Installation: installation.md
- Quickstart: quickstart.md
- Examples: examples.md
- Input Scanners:
- Anonymize: input_scanners/anonymize.md
- Ban Substrings: input_scanners/ban_substrings.md
- Ban Topics: input_scanners/ban_topics.md
- Code: input_scanners/code.md
- Prompt Injection: input_scanners/prompt_injection.md
- Secrets: input_scanners/secrets.md
- Sentiment: input_scanners/sentiment.md
- Token Limit: input_scanners/token_limit.md
- Toxicity: input_scanners/toxicity.md
- Output Scanners:
- Ban Substrings: output_scanners/ban_substrings.md
- Ban Topics: output_scanners/ban_topics.md
- Bias: output_scanners/bias.md
- Code: output_scanners/code.md
- Deanonymize: output_scanners/deanonymize.md
- Malicious URLs: output_scanners/malicious_urls.md
- No Refusal: output_scanners/no_refusal.md
- Refutation: output_scanners/refutation.md
- Regex: output_scanners/regex.md
- Relevance: output_scanners/relevance.md
- Sensitive: output_scanners/sensitive.md
- Sentiment: output_scanners/sentiment.md
- Toxicity: output_scanners/toxicity.md
- Benchmarks:
- Input scanners: benchmarks/input_scanners.md
- Output scanners: benchmarks/output_scanners.md
- Add scanner: add_scanner.md