-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
108 lines (100 loc) · 2.99 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
site_name: panel-web-llm
site_description: "Extends HoloViz Panel with an interface that wraps a client-side LLM."
site_author: "Andrew"
repo_url: https://github.com/panel-extensions/panel-web-llm
repo_name: panel-extensions/panel-web-llm
edit_uri: edit/main/docs/
theme:
name: material
logo: 'assets/logo.svg'
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
- toc.follow
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.superfences:
custom_fences:
- name: python
class: 'highlight'
validator: !!python/name:mkdocs_pycafe.validator
format: !!python/object/apply:mkdocs_pycafe.formatter
kwds:
type: panel
requirements: |
# Add any other requirements here
# see https://mkdocs.py.cafe/en/latest/ for more info
panel
panel_web_llm
link_text: |
<img src="https://py.cafe/logos/pycafe_logo.png" style="height: 24px"> **Run and edit this code in Py.Cafe**
- pymdownx.snippets:
url_download: true
plugins:
- search
- mkdocstrings:
handlers:
python:
paths:
- src
options:
docstring_style: google
show_if_no_docstring: true
filters:
- "!^_"
watch:
- docs
- src/panel_web_llm
nav:
- Home: index.md
- Examples: examples.md
- Reference: reference/panel_web_llm.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/panel-extensions
- icon: fontawesome/brands/twitter
link: https://twitter.com/panel_org
- icon: fontawesome/brands/python
link: https://pypi.org/project/panel-web-llm
- icon: fontawesome/brands/discourse
link: https://discourse.holoviz.org/
- icon: fontawesome/brands/discord
link: https://discord.com/invite/rb6gPXbdAr
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/panel-org