-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
107 lines (100 loc) · 2.84 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
site_name: ClientAI
site_description: A unified client for seamless interaction with multiple AI providers.
site_author: Igor Benav
site_url: https://github.com/igorbenav/clientai
theme:
name: material
font:
text: Ubuntu
logo: assets/logo.png
favicon: assets/logo.png
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tabs
- navigation.indexes
- search.suggest
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
rendering:
show_source: true
nav:
- ClientAI: index.md
- Installing: installing.md
- Quick-Start: quick-start.md
- Usage:
- ClientAI:
- usage/overview.md
- usage/initialization.md
- usage/text_generation.md
- usage/chat_functionality.md
- usage/multiple_providers.md
- usage/error_handling.md
- usage/ollama_manager.md
- Examples:
- Overview: examples/overview.md
- Examples:
- AI Dungeon Master: examples/ai_dungeon_master.md
- Advanced:
- Overview: advanced/overview.md
- Specific Providers:
- Ollama: advanced/ollama_specific.md
- OpenAI: advanced/openai_specific.md
- Replicate: advanced/replicate_specific.md
- Groq: advanced/groq_specific.md
- Error Handling: advanced/error_handling.md
- API Reference:
- Overview: api/overview.md
- ClientAI: api/clientai.md
- AIProvider: api/ai_provider.md
- Specific Providers:
- Ollama: api/specific_providers/ollama_provider.md
- OpenAI: api/specific_providers/openai_provider.md
- Replicate: api/specific_providers/replicate_provider.md
- Groq: api/specific_providers/groq_provider.md
- Ollama Manager:
- OllamaManager: api/ollama_manager/ollama_manager.md
- OllamaServerConfig: api/ollama_manager/ollama_server_config.md
- Community:
- Overview: community/overview.md
- Contributing: community/CONTRIBUTING.md
- Code of Conduct: community/CODE_OF_CONDUCT.md
- License: community/LICENSE.md
- Extending: extending.md
markdown_extensions:
- admonition
- codehilite
- toc:
permalink: true
- pymdownx.details:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
repo_name: igorbenav/clientai
repo_url: https://github.com/igorbenav/clientai
edit_uri: edit/main/docs/
extra_css:
- stylesheets/extra.css