-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathmkdocs.yml
More file actions
125 lines (106 loc) · 3.96 KB
/
mkdocs.yml
File metadata and controls
125 lines (106 loc) · 3.96 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
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
# This is the configuration file for MkDocs, a static site generator that uses Markdown files to create documentation sites.
# The configuration file is written in YAML format and contains various settings for the site.
# To install the MkDocs dependencies, run the following command in the terminal:
# pip install -r docs/assets/mkdocs_requirements.txt
# To build the site, run the following command in the terminal:
# mkdocs build
# To serve the site locally, run the following command in the terminal:
# mkdocs serve
# To deploy the site to GitHub Pages, run the following command in the terminal:
# mkdocs gh-deploy <-- this should be updated when we have CI setup with what the real instructions are.
site_name: Lemonade Server Documentation
site_url: https://lemonade-server.ai/
site_description: Lemonade Server is a lightweight, open-source local LLM server that allows you to run and manage multiple AI applications on your local machine. It provides a simple CLI for managing applications and supports various LLMs, making it easy to deploy and use AI models locally.
edit_uri: server/README.md
repo_name: lemonade-sdk/lemonade
repo_url: https://github.com/lemonade-sdk/lemonade
plugins:
- monorepo
- search
theme:
name: material
logo: assets/logo.png # If we want to use a custom logo instead of an icon
icon:
repo: fontawesome/brands/github # This is the icon for the repo link in the header
favicon: assets/favicon.ico
features:
- navigation.footer
- navigation.tracking
- navigation.expand
- navigation.top
- content.code.annotate
- content.code.copy
palette:
# Light mode settings
- scheme: lightmode
primary: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
# Dark mode settings
- scheme: slate
primary: amber
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
nav_style: dark
# Add the list of markdown files to be included in the documentation
# The order of the files in the list will determine the order they appear in the documentation
nav:
- Downloading and Getting Started: server/README.md
- Developer Getting Started: dev-getting-started.md
- Supported Applications: server/apps/README.md
- Application Guides:
- AI Dev Gallery: server/apps/ai-dev-gallery.md
- AI Toolkit: server/apps/ai-toolkit.md
- AnythingLLM: server/apps/anythingLLM.md
- CodeGPT: server/apps/codeGPT.md
- Continue: server/apps/continue.md
- Mindcraft: server/apps/mindcraft.md
- OpenHands: server/apps/open-hands.md
- Open WebUI: server/apps/open-webui.md
- Wut: server/apps/wut.md
- Lemonade Server CLI Guide: server/lemonade-server-cli.md
- Understanding local LLM servers: server/concepts.md
- Server Spec: server/server_spec.md
- Integration Guide: server/server_integration.md
- Custom Model Configuration: server/custom-models.md
- FAQ Guide: faq.md
- Contribution Guide: contribute.md
not_in_nav: |
/index.md
/self_hosted_runners.md
/eval/finetuned_model_export.md
exclude_docs: |
code.md
versioning.md
eval/README.md
eval/humaneval_accuracy.md
eval/mmlu_accuracy.md
eval/perplexity.md
eval/quark.md
eval/ort_genai_igpu.md
eval/lm-eval.md
# The following adds icons on the bottom of the page
extra:
homepage: https://lemonade-server.ai
social:
- icon: simple/youtube
link: https://www.youtube.com/@AMDDevCentral
- icon: simple/github
link: https://github.com/lemonade-sdk/lemonade
- icon: simple/discord
link: https://discord.gg/5xXzkMu8Zk
copyright: Copyright © 2025 AMD. All rights reserved.
# The custom CSS for colors and more
extra_css:
- assets/extra.css
# The custom JavaScript for the carousel for the videos
extra_javascript:
- assets/carousel.js
markdown_extensions:
- admonition
- pymdownx.superfences # Better code blocks
- pymdownx.tabbed: # Tabbed code blocks
alternate_style: true