-
Notifications
You must be signed in to change notification settings - Fork 56
/
mkdocs.yml
137 lines (129 loc) · 3.61 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
site_name: LLM Engine
site_description: The open source engine for fine-tuning large language models.
theme:
name: material
palette:
- scheme: default
primary: white
accent: deep purple
# - scheme: slate
# primary: blue grey
# accent: indigo
# toggle:
# icon: material/lightbulb-outline
# name: Switch to light mode
font:
text: Inter
code: IBM Plex Mono
features:
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotate
- navigation.expand
- content.code.copy
icon:
repo: fontawesome/brands/github
logo: https://raw.githubusercontent.com/scaleapi/llm-engine/main/docs/_static/favicon-32x32.png
favicon: https://raw.githubusercontent.com/scaleapi/llm-engine/main/docs/_static/favicon-32x32.png
language: en
repo_name: llm-engine
repo_url: https://github.com/scaleapi/llm-engine
edit_uri: ""
nav:
- Introduction: index.md
- "Getting Started": getting_started.md
- "Model Zoo": model_zoo.md
- "Guides":
- "Completions": guides/completions.md
- "Fine-tuning": guides/fine_tuning.md
- "Rate limits": guides/rate_limits.md
- "Self Hosting": guides/self_hosting.md
- "API":
- "API Reference": api/python_client.md
- "Data Type Reference": api/data_types.md
- "Error handling": api/error_handling.md
- "Integrations": integrations.md
- "Pricing": pricing.md
- "Contributing": contributing.md
# - "FAQ": faq.md
markdown_extensions:
- toc:
permalink: true
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
noclasses: true
pygments_style: "default"
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- attr_list
- md_in_html
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- mdx_include
- def_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.striphtml:
strip_comments: true
strip_js_on_attributes: false
- neoteroi.cards
- footnotes
watch:
- clients/python/llmengine
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
separate_signature: true
line_length: 60
show_root_heading: true
show_root_full_path: false
show_source: false
heading_level: 2
merge_init_into_class: true
show_signature_annotations: true
separate_signature: true
# - mkdocs-simple-hooks:
# hooks:
# on_pre_build: "docs.plugins:on_pre_build"
# on_files: "docs.plugins:on_files"
# on_page_markdown: "docs.plugins:on_page_markdown"
extra_css:
- stylesheets/index.css
- assets/css/extra.css
- assets/css/neoteroi.css
extra:
analytics:
provider: google
property: G-N54ZLW5PGC
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.