generated from axioma-ai-labs/python-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmkdocs.yml
79 lines (74 loc) · 1.83 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
site_name: Nevron
site_description: Official documentation for the Nevron AI Agent | Made by Neurobro
site_author: Neurobro
theme:
name: material
palette:
# Palette toggle for light mode
- scheme: default
primary: indigo
accent: teal
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: indigo
accent: cyan
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Inter
code: JetBrains Mono
favicon: assets/favicon.ico
logo: assets/logo.png
nav:
- 🏠 Home: index.md
- Quickstart: quickstart.md
- Nevron:
- Overview: agent/overview.md
- Workflows: agent/workflows.md
- LLMs: agent/llm.md
- Tools: agent/tools.md
- Memory: agent/memory.md
- Planning: agent/planning.md
- Feedback: agent/feedback.md
- Development:
- Setup: development/setup.md
- Environment: development/environment.md
- Workflow: development/workflow.md
- Contributing: development/contributing.md
- Deployment: deployment.md
- Source Code: https://github.com/axioma-ai-labs/nevron
- Discussions: https://github.com/axioma-ai-labs/nevron/discussions
- About: about.md
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
lang:
- en
prebuild_index: true
indexing: 'full'
- tags
- macros
- awesome-pages
extra:
search:
language: 'en'
tokenizer: '[\s\-\.]+'
markdown_extensions:
- codehilite
- admonition
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- attr_list
- md_in_html
- tables
- footnotes