-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
58 lines (53 loc) · 1.31 KB
/
mkdocs.yml
File metadata and controls
58 lines (53 loc) · 1.31 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
site_name: ContextLab Documentation
site_description: LLM context engineering toolkit
site_author: Siddhant Khare
repo_url: https://github.com/siddhant-k-code/contextlab
repo_name: siddhant-k-code/contextlab
theme:
name: material
palette:
- scheme: default
primary: blue
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: blue
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- search.highlight
- content.code.copy
nav:
- Home: index.md
- Tutorials:
- Getting Started: tutorials/01_intro_analyze.md
- Compression Strategies: tutorials/02_compress_strategies.md
- Visualization Dashboard: tutorials/03_visualize_dashboard.md
- API Reference:
- Overview: api/overview.md
- Contributing: contributing.md
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.tabbed
- pymdownx.snippets
- toc:
permalink: true