forked from predibase/lorax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
93 lines (87 loc) · 2.72 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
site_name: LoRAX Docs
theme:
name: material
font:
text: Roboto
features:
- navigation.sections
- navigation.indexes
- search.suggest
- search.highlight
logo: images/lorax_guy.png
favicon: favicon.ico
palette:
# primary: deep orange
# accent: deep orange
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: deep orange
accent: deep orange
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
primary: deep orange
accent: deep orange
nav:
- LoRAX: index.md
- 🚀 Getting Started:
- Docker: getting_started/docker.md
- Kubernetes (Helm): getting_started/kubernetes.md
- SkyPilot: getting_started/skypilot.md
- Local: getting_started/local.md
- 🧮 Models:
- Base Models: models/base_models.md
- Adapters:
- Adapters: models/adapters/index.md
- LoRA: models/adapters/lora.md
- Medusa: models/adapters/medusa.md
- 📚 Reference:
- Launcher: reference/launcher.md
- REST API: reference/rest_api.md
- Python Client:
- Python Client: reference/python_client/index.md
- lorax.client: reference/python_client/client.md
# - lorax.types: reference/python_client/types.md
- OpenAI Compatible API: reference/openai_api.md
- 🔬 Guides:
- Quantization: guides/quantization.md
- Structured Output (JSON): guides/structured_output.md
- Speculative Decoding: guides/speculative_decoding.md
- CUDA Graph Compilation: guides/cuda_graphs.md
- Merging Adapters: guides/merging_adapters.md
- Contributing to LoRAX:
- Contributing to LoRAX: guides/contributing/index.md
- Development Environment: guides/contributing/development_env.md
# - GPUs: guides/gpus.md
# - Fine-Tuning: guides/fine_tuning.md
# - Memory Management: guides/memory_management.md
# - Storage: guides/storage.md
repo_url: https://github.com/predibase/lorax
repo_name: predibase/lorax
copyright: Copyright © 2023 Predibase, Inc.
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/predibase/lorax
- icon: fontawesome/brands/discord
link: https://discord.gg/CBgdrGnZjy
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
plugins:
- render_swagger
- search