forked from protectai/llm-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
164 lines (154 loc) · 5.31 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
site_name: LLM Guard
site_author: Protect AI, Inc.
site_description: LLM Guard is a comprehensive tool designed to fortify the security of Large Language Models (LLMs).
site_url: https://llm-guard.com
repo_url: https://github.com/protectai/llm-guard
repo_name: protectai/llm-guard
edit_uri: ""
copyright: |
Maintained by <a href="https://protectai.com">Protect AI, Inc.</a>.
theme:
name: material
custom_dir: docs/overrides
favicon: assets/favicon.ico
logo: assets/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:
- announce.dismiss
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.path
- content.code.annotate
- toc.follow
- toc.integrate
- navigation.top
- content.code.copy
- content.code.annotate
palette:
- scheme: default
primary: custom
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: custom
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- tables
- def_list
plugins:
- search
- swagger-ui-tag:
supportedSubmitMethods: []
syntaxHighlightTheme: monokai
- mkdocs-jupyter
- git-revision-date-localized
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/ProtectAICorp
- icon: fontawesome/brands/github
link: https://github.com/protectai
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/protect-ai
- icon: fontawesome/brands/slack
link: https://join.slack.com/t/laiyerai/shared_invite/zt-28jv3ci39-sVxXrLs3rQdaN3mIl9IT~w
- icon: fontawesome/solid/globe
link: https://protectai.com/llm-guard
analytics:
provider: google
property: G-B76J8KGG5Z
nav:
- Get Started:
- Index: index.md
- Installation: get_started/installation.md
- Quickstart: get_started/quickstart.md
- Playground: get_started/playground.md
- Attacks: get_started/attacks.md
- Best Practices: get_started/best_practices.md
- Tutorials:
- Optimization: tutorials/optimization.md
- Local Models: tutorials/notebooks/local_models.ipynb
- OpenAI SDK: tutorials/openai.md
- Across 100+ LLMs: tutorials/litellm.md
- Langchain: tutorials/notebooks/langchain.ipynb
- Retrieval-augmented Generation: tutorials/rag.md
- Secure RAG with Langchain: tutorials/notebooks/langchain_rag.ipynb
- Secure RAG with LlamaIndex: tutorials/notebooks/llama_index_rag.ipynb
- Secure Agents with Langchain: tutorials/notebooks/langchain_agents.ipynb
- Invisible Prompt Attack: tutorials/attacks/invisible_prompt.ipynb
- Input Scanners:
- Anonymize: input_scanners/anonymize.md
- BanCode: input_scanners/ban_code.md
- Ban Competitors: input_scanners/ban_competitors.md
- Ban Substrings: input_scanners/ban_substrings.md
- Ban Topics: input_scanners/ban_topics.md
- Code: input_scanners/code.md
- Gibberish: input_scanners/gibberish.md
- Invisible Text: input_scanners/invisible_text.md
- Language: input_scanners/language.md
- Prompt Injection: input_scanners/prompt_injection.md
- Regex: input_scanners/regex.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 Competitors: output_scanners/ban_competitors.md
- 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
- JSON: output_scanners/json.md
- Language: output_scanners/language.md
- Language Same: output_scanners/language_same.md
- Malicious URLs: output_scanners/malicious_urls.md
- No Refusal: output_scanners/no_refusal.md
- Reading Time: output_scanners/reading_time.md
- Factual Consistency: output_scanners/factual_consistency.md
- Gibberish: output_scanners/gibberish.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
- URL Reachability: output_scanners/url_reachability.md
- API:
- Overview: api/overview.md
- Deployment: api/deployment.md
- API Reference: api/reference.md
- Client: api/client.md
- Changelog: changelog.md
- Customization:
- Add scanner: customization/add_scanner.md
extra_css:
- assets/extra.css