-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
89 lines (80 loc) · 2.15 KB
/
mkdocs.yaml
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
site_name: Focoos AI SDK
repo_url: https://github.com/FocoosAI/focoos
edit_uri: edit/main/docs
theme:
name: material
palette:
- scheme: slate
logo: assets/logo.svg
favicon: assets/favicon.svg
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- navigation.tabs
- navigation.tabs.sticky
extra_css:
- assets/stylesheets/custom.css
- https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=DM+Mono&display=swap # Load Google Fonts (DM Sans Regular, Medium, and DM Mono)
plugins:
- search
- mkdocstrings:
enable_inventory: true
handlers:
python:
options:
docstring_style: google
- include-markdown
nav:
- Home:
- Focoos AI: index.md
- Datasets: datasets.md
- Models: models.md
- Getting Started:
- Introduction: getting_started/introduction.md
- Installation: getting_started/installation.md
- Quickstart: getting_started/quickstart.md
- How to:
- Cloud Training: how_to/cloud_training.md
- Inference: how_to/inference.md
- API Reference:
- focoos: api/focoos.md
- remote model: api/remote_model.md
- local model: api/local_model.md
- runtime: api/runtime.md
- Development:
- Contributing: development/contributing.md
- Code of Conduct: development/code_of_conduct.md
- Changelog: development/changelog.md
markdown_extensions:
- pymdownx.highlight:
linenums: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- pymdownx.snippets:
restrict_base_path: false
- admonition
- tables
- toc:
permalink: "#"
- attr_list
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra:
version:
provider: mike
analytics:
provider: google
property: G-RP4PM5PGLN
social:
- icon: fontawesome/brands/github
link: https://github.com/FocoosAI/focoos
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/focoosai
copyright: Copyright © 2024 FocoosAI
watch:
- focoos