-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
102 lines (95 loc) · 2.94 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
site_name: GenAI RAG Accelerator
repo_name: artefactory/skaff-rag-accelerator
repo_url: https://github.com/artefactory/skaff-rag-accelerator
theme:
name: material
logo: images/logo.svg
favicon: images/favicon.svg
font:
text: Oxygen
features:
- search.suggest
- search.highlight
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.indexes
- navigation.path
- navigation.instant
- navigation.instant.preview
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.tracking
- toc.follow
palette: # Light and dark mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/lightbulb
name: "Switch to light mode"
extra:
# hide the "Made with Material for MkDocs" message
generator: false
analytics:
provider: google
property: G-7REH78BCSD
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1@
note: >-
Thanks for your feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
<a href="https://github.com/artefactory-skaff/skaff-rag-accelerator/issues/new/?title=[Feedback]+{title}+-+{url}" target="_blank" rel="noopener">opening an issue</a>.
extra_css:
- stylesheets/skaff.css
plugins:
- termynal
- search
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
- pymdownx.snippets
nav:
- Home: index.md
- The frontend: frontend.md
- The database: database.md
- The backend:
- The Backend: backend/backend.md
- RAG and RAGConfig classes: backend/rag_ragconfig.md
- Chains and chain links: backend/chains/chains.md
- API Plugins:
- Plugins: backend/plugins/plugins.md
- Memory and sessions: backend/plugins/conversational_rag_plugin
- Authentication: backend/plugins/authentication.md
- Secure user-based sessions: backend/plugins/user_based_sessions.md
- Deployment:
- Admin Mode: deployment/admin_mode.md
- Cookbook:
- config.yaml recipes:
- LLMs: cookbook/configs/llms_configs.md
- Vector Stores: cookbook/configs/vector_stores_configs.md
- Embedding Models: cookbook/configs/embedding_models_configs.md
- Databases: cookbook/configs/databases_configs.md
- How to load documents in the RAG: cookbook/loading_documents.md
- How to extend the RAGConfig: cookbook/extend_ragconfig.md