forked from biocypher/biochatter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
131 lines (119 loc) · 3.76 KB
/
mkdocs.yml
File metadata and controls
131 lines (119 loc) · 3.76 KB
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
site_name: BioChatter
theme:
name: material
font:
text: Lato
code: Roboto Mono
palette:
- scheme: default
primary: blue grey
accent: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: light blue
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- content.action.edit
- search.suggest
- search.highlight
- navigation.instant
- navigation.tabs
- toc.integrate
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
heading_level: 3
- table-reader
- social
- mike
site_url: https://biochatter.org/
nav:
- Home: index.md
- About:
- Project: about/project.md
- Design Philosophy: about/design-philosophy.md
- Use Cases: about/use-cases.md
- Get Started:
- Installation: installation.md
- Quickstart: quickstart.md
- Learn:
- Tutorials:
- Basic Usage - Chat: features/chat.md
- Multimodal Models: features/multimodal.md
- Retrieval-Augmented Generation: features/rag.md
- In Chat Tool Calling: features/tool_chat.md
- Ad hoc API Calling: features/api.md
- Structured outputs: features/structured_outputs.md
- Reflexion via LangGraph: features/reflexion-agent.md
- Open-source and Local LLMs: features/open-llm.md
- The Living Benchmark: features/benchmark.md
- Podcast my Paper: features/podcast.md
- LLM in your Browser - WebAssembly: features/wasm.md
- HowTo / FAQ:
- 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
- Benchmark:
- Overview: benchmark/overview.md
- All Results: benchmark/results.md
- Developer Guide: benchmark/developer.md
- Reference:
- API Documentation:
- LLM Connectivity: api-docs/llm_connect.md
- Vectorstore Agent: api-docs/vectorstore.md
- Knowledge Graph Agent: api-docs/kg.md
- "API Calling: Base Classes": api-docs/api-calling-base.md
- "API Calling: Web APIs": api-docs/api-calling-web.md
- "API Calling: Python APIs": api-docs/api-calling-python.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
- toc:
toc_depth: 3
extra:
version:
provider: mike
extra_javascript:
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
- scripts/tablesort.js