-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmkdocs.yml
139 lines (126 loc) · 4.3 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
138
139
site_name: BioChatter
theme:
name: material
font:
text: Lato
code: Roboto Mono
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- content.code.copy
- content.action.edit
- search.suggest
- search.highlight
- navigation.instant
- navigation.tabs
- navigation.sections
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
default_handler: python
- table-reader
- social
- redirects:
redirect_maps:
"vignette-custom-bclight-simple.md": "vignettes/custom-bclight-simple.md"
"vignette-custom-bclight-advanced.md": "vignettes/custom-bclight-advanced.md"
"vignette-kg.md": "vignettes/kg.md"
"vignette-rag.md": "vignettes/rag.md"
"benchmarking.md": "features/benchmark.md"
"chat.md": "features/chat.md"
"rag.md": "features/rag.md"
"reflexion-agent.md": "features/reflexion-agent.md"
"open-llm.md": "features/open-llm.md"
"wasm.md": "features/wasm.md"
"podcast.md": "features/podcast.md"
"llm_connect-reference.md": "api-docs/llm_connect.md"
"vectorstore-reference.md": "api-docs/vectorstore.md"
"kg-reference.md": "api-docs/kg.md"
"api-reference.md": "api-docs/api-calling.md"
"reflexion-reference.md": "api-docs/reflexion.md"
"podcast-reference.md": "api-docs/podcast.md"
"benchmark.md": "benchmark/overview.md"
"benchmark-results.md": "benchmark/results.md"
"benchmark-developer.md": "benchmark/developer.md"
site_url: https://biochatter.org/
nav:
- Home: index.md
- Features:
- Home: features/index.md
- Basic Usage - Chat: features/chat.md
- Retrieval-Augmented Generation: features/rag.md
- API Calling: features/api.md
- Reflexion via LangGraph: features/reflexion-agent.md
- Open-source and Local LLMs: features/open-llm.md
- LLM in your Browser - WebAssembly: features/wasm.md
- The Living Benchmark: features/benchmark.md
- Podcast my Paper: features/podcast.md
- Benchmark:
- Overview: benchmark/overview.md
- All Results: benchmark/results.md
- Developer Guide: benchmark/developer.md
- Vignettes:
- Home: vignettes/index.md
- Knowledge Graph RAG: vignettes/kg.md
- Retrieval-Augmented Generation (RAG): vignettes/rag.md
- Customising BioChatter Light - Simple: vignettes/custom-bclight-simple.md
- Customising BioChatter Light - Advanced: vignettes/custom-bclight-advanced.md
- Customising BioChatter Light and Next - Cancer Genetics Use Case: vignettes/custom-decider-use-case.md
- API Reference:
- Home: api-docs/index.md
- LLM Connectivity: api-docs/llm_connect.md
- Vectorstore Agent: api-docs/vectorstore.md
- Knowledge Graph Agent: api-docs/kg.md
- API Agent: api-docs/api-calling.md
- Reflexion Agent: api-docs/reflexion.md
- Podcast: api-docs/podcast.md
repo_url: https://github.com/biocypher/biochatter
repo_name: biocypher/biochatter
edit_uri: edit/main/docs/
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- attr_list
- md_in_html
- admonition
- pymdownx.details
extra_javascript:
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- scripts/tablesort.js
hooks:
- docs/scripts/hooks.py