-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmkdocs.yml
More file actions
97 lines (94 loc) · 2.82 KB
/
mkdocs.yml
File metadata and controls
97 lines (94 loc) · 2.82 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
site_name: duh docs
site_description: Multi-model consensus engine documentation
repo_url: https://github.com/msitarzewski/duh
repo_name: msitarzewski/duh
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.tabs.link
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables
- attr_list
- md_in_html
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quickstart: getting-started/quickstart.md
- Configuration: getting-started/configuration.md
- Concepts:
- How Consensus Works: concepts/how-consensus-works.md
- Providers and Models: concepts/providers-and-models.md
- Memory and Persistence: concepts/memory-and-persistence.md
- Cost Management: concepts/cost-management.md
- CLI Reference:
- Overview: cli/index.md
- duh ask: cli/ask.md
- duh recall: cli/recall.md
- duh threads: cli/threads.md
- duh show: cli/show.md
- duh feedback: cli/feedback.md
- duh models: cli/models.md
- duh cost: cli/cost.md
- duh serve: cli/serve.md
- duh mcp: cli/mcp.md
- duh batch: cli/batch.md
- duh export: cli/export.md
- REST API: api-reference.md
- Web UI:
- Quickstart: web-quickstart.md
- Reference: web-ui.md
- Python Client: python-client.md
- MCP Server: mcp-server.md
- Guides:
- Docker: guides/docker.md
- Production Deployment: guides/production-deployment.md
- Authentication: guides/authentication.md
- Monitoring: guides/monitoring.md
- Local Models: guides/local-models.md
- Batch Mode: batch-mode.md
- Export: export.md
- Python API:
- Library Usage: python-api/library-usage.md
- Reference:
- Config Reference: reference/config-reference.md
- Errors: reference/errors.md
- Benchmarks: reference/benchmarks.md
- Troubleshooting: troubleshooting.md