-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
85 lines (80 loc) · 2.35 KB
/
Copy pathmkdocs.yml
File metadata and controls
85 lines (80 loc) · 2.35 KB
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
site_name: MalOps Agent
site_description: Malware triage agent with FastAPI and multi-agent graph
site_dir: site
docs_dir: docs
repo_url: https://github.com/akajhon/MalOps-Agent
repo_name: akajhon/MalOps-Agent
edit_uri: edit/main/docs/
theme:
name: material
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- content.code.copy
- content.tabs.link
logo: assets/logo_malops.png
favicon: assets/logo_malops.png
icon:
repo: fontawesome/brands/github
palette:
- scheme: slate
primary: black
accent: pink
nav:
- Overview: index.md
- Getting Started: getting-started.md
- API: api.md
- Architecture:
- Overall Architecture: architecture/overall.md
- Langgraph Architecture: architecture/langgraph.md
- Reference:
- API App: reference/api_app.md
- API Storage: reference/api_storage.md
- Agent Graph: reference/agent_graph.md
- Tools: reference/tools.md
- Unit Tests: reference/tests.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths:
- .
options:
docstring_style: google
show_source: true
show_signature: true
separate_signature: true
show_root_heading: true
setup_commands:
- import os, sys, types
- sys.path.insert(0, os.getcwd())
- mods = [
'yara',
'pefile',
'capa', 'capa.main', 'capa.rules', 'capa.engine', 'capa.loader', 'capa.features',
'capa.render', 'capa.render.json', 'capa.render.utils', 'capa.render.default',
'capa.capabilities', 'capa.capabilities.common', 'capa.render.result_document',
'capa.features.freeze', 'capa.features.freeze.features', 'capa.features.common',
'langchain_core', 'langchain_core.tools'
]
- [sys.modules.setdefault(m, types.ModuleType(m)) for m in mods]
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.details
- pymdownx.emoji
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed