forked from Quansight/ragna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
92 lines (85 loc) · 2.05 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: Ragna
repo_url: https://github.com/Quansight/ragna
copyright: Copyright © 2023 Ragna Development Team at Quansight LLC
extra:
social:
- icon: fontawesome/brands/python
link: https://pypi.org/project/ragna/
analytics:
provider: plausible
domain: ragna.chat
theme:
name: material
custom_dir: docs/overrides
logo: assets/brand/logo-symbol/logo-symbol-white.png
palette:
primary: custom
accent: custom
font:
text: Fira Sans
features:
- navigation.sections
- navigation.indexes
- navigation.top
- navigation.footer
- content.code.copy
- search
- search.suggest
- search.highlight
- announce.dismiss
markdown_extensions:
- admonition
- codehilite
- pymdownx.superfences
- attr_list
- md_in_html
- footnotes
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
show_root_heading: true
show_bases: false
unwrap_annotated: true
import:
- https://docs.python.org/3/objects.inv
- https://fastapi.tiangolo.com/objects.inv
- gen-files:
scripts:
- scripts/docs/gen_files.py
- material-plausible
hooks:
- scripts/docs/rtd.py
watch:
- ragna
- scripts/docs
extra_css:
- assets/stylesheet.css
# Explicit navigation
nav:
- "index.md"
- "install.md"
# - Explanations:
# - "explanations/what-is-rag.md" # Hide for 0.1.0 release
- Tutorials:
- "tutorials/python-api.md"
- "tutorials/rest-api.md"
- "tutorials/web-app.md"
- How-to:
- "how-tos/set-configuration.md"
- Community:
- "community/welcome.md"
- "community/contribute.md"
- References:
- "references/python-api.md"
- "references/rest-api.md"
- "references/cli.md"
- "references/faq.md"
- "references/changelog.md"