forked from cheshire-cat-ai/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
194 lines (180 loc) · 6.63 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
site_name: Cheshire Cat AI docs
repo_url: https://github.com/cheshire-cat-ai/core
site_url: https://cheshire-cat-ai.github.io/docs/
docs_dir: mkdocs
site_dir: docs
plugins:
- mkdocs-video:
is_video: True
video_muted: True
video_autoplay: False
video_type: mp4
- search
- gen-files:
scripts:
- gen_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [mkdocs/API_Documentation]
options:
docstring_style: numpy
hooks:
- mkdocs/hooks/drawio_file.py
nav:
- Hello, dear: index.md
- Quickstart:
- Introduction: quickstart/introduction.md
- Installation and First Configuration: quickstart/installation-configuration.md
- Playing with the Cat: quickstart/play-with-the-cat.md
# - Interacting using APIs: quickstart/interact-using-api.md
- Uploading a Document: quickstart/upload-document.md
- Installing a Plugin: quickstart/installing-plugin.md
- Creating a Plugin: quickstart/prepare-plugin.md
- Writing the first Tool: quickstart/writing-tool.md
- Writing the first Hook: quickstart/writing-hook.md
- Conclusion: quickstart/conclusion.md
- Plugins:
- Plugin: plugins/plugins.md
- Tools: plugins/tools.md
- Hooks: plugins/hooks.md
- Forms: plugins/forms.md
- Logging: plugins/logging.md
- Settings: plugins/settings.md
- Dependencies: plugins/dependencies.md
- Examples: plugins/examples.md
- Python Reference: API_Documentation/
- Registry:
- Using the Plugin Template: plugins/plugins-registry/plugin-from-template.md
- Publishing a Plugin: plugins/plugins-registry/publishing-plugin.md
- Debugging:
- Visual Studio Code: plugins/debugging/vscode.md
- Framework:
- Cat Components:
- The Core: framework/cat-components/cheshire_cat/core.md
- The Stray Cat: framework/cat-components/cheshire_cat/stray_cat.md
- The Agent:
- Introduction: framework/cat-components/cheshire_cat/agent.md
- Procedures Chain: framework/cat-components/cheshire_cat/tool_chain.md
- Memory Chain: framework/cat-components/cheshire_cat/memory_chain.md
- The Prompts:
- Main Prompt: framework/cat-components/prompts/main_prompt.md
- Instruction Prompt: framework/cat-components/prompts/instructions.md
- The Vector Memory:
- Vector Memory Collections: framework/cat-components/memory/vector_memory.md
- The Long Term Memory:
- Introduction: framework/cat-components/memory/long_term_memory.md
- Episodic Memory: framework/cat-components/memory/episodic_memory.md
- Declarative Memory: framework/cat-components/memory/declarative_memory.md
- Procedural Memory: framework/cat-components/memory/procedural_memory.md
- The Working Memory: framework/cat-components/memory/working_memory.md
- The Rabbit Hole: framework/cat-components/cheshire_cat/rabbit_hole.md
- The White Rabbit: framework/cat-components/cheshire_cat/white_rabbit.md
- The Mad Hatter: framework/cat-components/cheshire_cat/mad_hatter.md
- Technical Diagrams:
- The Cat Bootstrap: framework/flows/cat-bootstrap.md
- Chatting with the Cat: framework/flows/chatting-with-the-cat.md
- Plugins Lifecycle: framework/flows/plugins-lifecycle.md
- Rabbit Hole Ingestion: framework/flows/rabbit-hole-ingestion.md
- Production:
- Administration:
- Docker Compose: production/administrators/docker-compose.md
- Environment Variables: production/administrators/env-variables.md
- Automatic Tests: production/administrators/tests.md
- Backups and Updates: production/administrators/backups-updates.md
- Network:
- WebSocket Endpoints: production/network/ws-endpoints.md
- HTTP Endpoints: production/network/http-endpoints.md
- Clients: production/network/clients.md
- Auth:
- Authentication: production/auth/authentication.md
- Authorization: production/auth/authorization.md
- User Management: production/auth/user-management.md
- Use Cases:
- Integrations: production/use-cases/integrations.md
- Examples: production/use-cases/examples.md
- FAQ:
- General: faq/general.md
- Basic Info: faq/basic_info.md
- Errors: faq/errors.md
- Customization: faq/customization.md
- Security & Spending: faq/security_and_spending.md
- Concepts:
- Language Models: faq/llm-concepts/llm.md
- Retrieval Augmented Generation: faq/llm-concepts/rag.md
- Prompt: faq/llm-concepts/prompt.md
- Encoder: faq/llm-concepts/embedder.md
- Vector Memory: faq/llm-concepts/vector-memory.md
theme:
name: material
favicon: assets/img/favicon.ico
logo: assets/img/cheshire-cat-logo.svg
palette:
# Palette toggle for light mode
- scheme: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: black
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
#text: Old Standard TT
text: Source Serif Pro
features:
- navigation.indexes
- navigation.footer
- navigation.top
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- content.code.copy
- content.code.annotate
- search.suggest
- search.highlight
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/cheshire-cat-ai/core
name: The Cheshire Cat repository on GitHub
- icon: fontawesome/brands/discord
link: https://discord.gg/bHX5sNFCYU
name: The Cheshire Cat Discord Server
# additional CSS and JS files
extra_javascript:
- javascripts/cheshire-cat-widget-init.js
- javascripts/cheshire-cat-widget.js
extra_css:
- stylesheets/extra.css
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- attr_list
- md_in_html
- footnotes
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
#- pymdownx.superfences:
# custom_fences:
# - name: mermaid
# class: mermaid
# format: !!python/name:pymdownx.superfences.fence_code_format