mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-23 21:59:57 +02:00
117 lines
3.3 KiB
YAML
117 lines
3.3 KiB
YAML
site_name: Agentic Security
|
|
repo_url: https://github.com/msoedov/agentic_security
|
|
site_url: https://msoedov.github.io/agentic_security
|
|
site_description: Open-source LLM Vulnerability Scanner for safe and reliable AI.
|
|
site_author: Agentic Security Team
|
|
edit_uri: edit/main/docs/
|
|
repo_name: msoedov/agentic_security
|
|
copyright: Maintained by <a href="https://msoedov.github.io">Agentic Security Team</a>.
|
|
|
|
nav:
|
|
- Adventure starts here:
|
|
- Overview: index.md
|
|
- Quickstart: quickstart.md
|
|
- Design: design.md
|
|
- Abstractions: abstractions.md
|
|
- Features: probe_data.md
|
|
- Concepts:
|
|
- Probe Actor: probe_actor.md
|
|
- Refusal Actor: refusal_classifier_plugins.md
|
|
- Agent Spec: http_spec.md
|
|
- Setup:
|
|
- Installation: installation.md
|
|
- Getting Started: getting_started.md
|
|
- Configuration: configuration.md
|
|
- Advanced Topics:
|
|
- Dataset Extension: datasets.md
|
|
- External Modules: external_module.md
|
|
- CI/CD Integration: ci_cd.md
|
|
- Bayesian Optimization: optimizer.md
|
|
- Image Generation: image_generation.md
|
|
- Stenography Functions: stenography.md
|
|
- Reinforcement Learning Optimization: rl_model.md
|
|
- WIP:
|
|
- Agent Operator: operator.md
|
|
- Reference:
|
|
- API Reference: api_reference.md
|
|
# - Project:
|
|
# - Setup: setup.md
|
|
# - Version control: version_control.md
|
|
# - Docker: docker.md
|
|
# - Variables: variables.md
|
|
# - Custom libraries: custom_libraries.md
|
|
# - Database: database.md
|
|
# - Credentials: credentials.md
|
|
# - Code execution: code_execution.md
|
|
# - Settings: settings.md
|
|
# - Version upgrades: version_upgrades.md
|
|
# - Contributing:
|
|
# - Overview: contributing_overview.md
|
|
# - Dev environment: dev_environment.md
|
|
# - Backend: backend.md
|
|
# - Frontend: frontend.md
|
|
# - Documentation: documentation.md
|
|
# - About:
|
|
# - Code of conduct: code_of_conduct.md
|
|
# - Usage statistics: usage_statistics.md
|
|
# - FAQ: faq.md
|
|
# - Changelog: changelog.md
|
|
|
|
plugins:
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
paths: [agentic_security]
|
|
|
|
|
|
footer:
|
|
links: [] # Removes the default footer credits
|
|
|
|
theme:
|
|
name: material
|
|
features:
|
|
- navigation.expand
|
|
palette:
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: default
|
|
primary: custom
|
|
accent: deep orange
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: slate
|
|
primary: custom
|
|
accent: deep orange
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
icon:
|
|
repo: fontawesome/brands/github
|
|
favicon: https://res.cloudinary.com/dq0w2rtm9/image/upload/v1741195421/favicon_kuz6xr.png
|
|
|
|
extra:
|
|
generator: false
|
|
social:
|
|
- icon: fontawesome/brands/github
|
|
link: https://github.com/msoedov/agentic_security
|
|
- icon: fontawesome/brands/python
|
|
link: https://pypi.org/project/agentic_security
|
|
|
|
extra_css:
|
|
- stylesheets/extra.css
|
|
|
|
markdown_extensions:
|
|
- toc:
|
|
permalink: true
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|