-
Notifications
You must be signed in to change notification settings - Fork 503
/
mkdocs.yml
159 lines (139 loc) · 4.65 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
# Website Info
site_name: LaVague
site_url: https://docs.lavague.ai/en/latest/
site_author: LaVague
# Repository
repo_name: lavague-ai/LaVague
repo_url: https://github.com/lavague-ai/LaVague
# Configuration
theme:
name: material
custom_dir: docs/material_theme_customization
features:
- navigation.instant
- search.highlight
- content.tabs.link
- navigation.sections
- navigation.indexes
- content.code.copy
logo: assets/logo.png
favicon: assets/logo.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
icon:
admonition:
note: material/pencil-circle # blue pencil
abstract: material/list-box-outline
info: material/information-outline
tip: material/fire #green fire
success: material/check
question: material/help-circle
warning: material/alert
failure: material/window-close
danger: material/lightning-bolt-circle
bug: material/shield-bug
example: material/test-tube
quote: material/format-quote-close
# Plugins
plugins:
- search
- mkdocs-jupyter
# Customization
extra:
homepage: https://lavague.ai
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/invite/SDxn9KpqX9
- icon: fontawesome/brands/github
link: https://github.com/lavague-ai/
- icon: fontawesome/brands/linkedin
- icon: fontawesome/brands/twitter
extra_css:
- stylesheets/extra.css
extra_javascript:
- "https://code.jquery.com/jquery-3.3.1.min.js"
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.critic
- pymdownx.highlight:
use_pygments: true
pygments_style: monokai
- pymdownx.superfences
# Documentation tree
nav:
- 🏠 Home: "index.md"
- ⚡ Getting Started:
- Installation: "docs/get-started/installation.md"
- Quick tour: "docs/get-started/quick-tour.md"
- Changing models: "docs/get-started/customization.md"
- Tools & interfaces:
- Chrome Extension: "docs/get-started/docs-chrome.md"
- Gradio: "docs/get-started/gradio.md"
- TokenCounter tool: "docs/get-started/token-usage.md"
- Benchmarking tool: "docs/get-started/testing.md"
- Support:
- Troubleshooting: "docs/get-started/troubleshoot.md"
- FAQs: "docs/get-started/FAQs.md"
- LaVague QA:
- Quick tour: 'docs/lavague-qa/quick-tour.md'
- Installation and usage: 'docs/lavague-qa/usage.md'
- Examples: 'docs/lavague-qa/examples.md'
- 🤝 Integrations:
- Anthropic: "docs/integrations/anthropic.md"
- Azure: "docs/integrations/azure.md"
- Fireworks: "docs/integrations/fireworks.md"
- Gemini: "docs/integrations/gemini.md"
- Openai: "docs/integrations/openai.md"
- Contribute: "docs/integrations/contribute.md"
- 📚 Learn:
- Architecture: "docs/learn/architecture.md"
- Debugging agents:
- End-to-end debugging: "docs/learn/debugging.md"
- Debug tools: "docs/learn/debug-tools.md"
- Custom actions: "docs/learn/actions.md"
- ✅ Quick examples:
- Knowledge Retrieval:
- Navigate through Notion: "docs/use-cases/notion.md"
- Data Entry:
- Fill out forms: "docs/use-cases/forms.md"
- 📝 End to end examples:
- Knowledge Retrieval:
- HF papers retrieval: "docs/examples/hf-papers-retrieval.md"
- Data Entry:
- Automated job application: "docs/examples/job-application.md"
- Medical appointment booking: "docs/examples/medical_appointment_booking.md"
- 🧩 Module Guides:
- Web Agents: "docs/module-guides/agents.md"
- World Model: "docs/module-guides/world-model.md"
- Action Engine:
- Overview: "docs/module-guides/action-engine.md"
- Navigation Engine: "docs/module-guides/navigation-engine.md"
- Evaluator: "docs/module-guides/evaluation.md"
- Drivers: "docs/module-guides/browser-drivers.md"
- Logger: "docs/module-guides/local-log.md"
- 🤗 Contributing:
- Home: "docs/contributing/contributing.md"
- General guidelines: "docs/contributing/general.md"
- Documentation: "docs/contributing/documentation.md"
- 🛠️ API reference:
- API reference home: "docs/core/index.html"