-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
92 lines (88 loc) · 2.29 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
site_name: Launch
site_description: Simple, modern and high performance machine learning deployment in python.
site_url: https://scaleapi.github.io/launch-python-client/
theme:
name: material
palette:
- scheme: default
primary: blue grey
accent: indigo
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: indigo
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotate
- content.code.copy
icon:
repo: fontawesome/brands/github-alt
logo: _static/launch-logo.svg
favicon: _static/favicon-32x32.png
language: en
repo_name: scaleapi/launch-python-client
repo_url: https://github.com/scaleapi/launch-python-client
edit_uri: ''
nav:
- Introduction: index.md
- CLI: cli.md
- Concepts:
- concepts/overview.md
- concepts/model_bundles.md
- concepts/model_endpoints.md
- concepts/endpoint_predictions.md
- concepts/batch_jobs.md
- concepts/callbacks.md
- 'API Documentation':
- api/client.md
- api/llms.md
- api/model_bundles.md
- api/model_endpoints.md
- api/endpoint_predictions.md
- api/hooks.md
- Guides:
- guides/custom_docker_images.md
markdown_extensions:
- toc:
permalink: true
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- attr_list
- md_in_html
- mdx_include
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- mkdocstrings:
watch: [launch]
handlers:
python:
rendering:
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'