-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
230 lines (222 loc) · 5.68 KB
/
sidebars.js
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [
{
type: 'doc',
id: 'intro',
label: 'Introduction',
},
{
type: 'doc',
id: 'pd-platforms',
label: 'Platforms',
},
{
type: 'category',
label: 'Getting Started',
link: {
"type": "generated-index",
"description": "Connect your OpenAI Assistant to your website"
},
items: [
{
type: 'doc',
id: 'getting-started/prerequisites',
label: 'Prerequisites'
},
{
type: 'doc',
id: 'getting-started/concepts',
label: 'Concepts'
},
{
type: 'doc',
id: 'getting-started/creating-an-openai-assistant-chatbot',
label: 'Creating an OpenAI Assistant Chatbot'
},
{
type: 'doc',
id: 'getting-started/embedding-your-openai-assistant',
label: 'Embedding Your OpenAI Assistant'
},
{
type: 'doc',
id: 'getting-started/theme',
label: 'Theme'
},
{
type: 'doc',
id: 'getting-started/custom-css',
label: 'Custom CSS',
},
{
type: 'doc',
id: 'getting-started/settings',
label: 'Settings',
},
{
type: 'doc',
id: 'getting-started/results',
label: 'Results',
},
{
type: 'doc',
id: 'getting-started/add-whatsapp-to-predictable-dialogs',
label: 'Add WhatsApp'
}
],
},
{
type: 'doc',
id: 'quick-faq',
label: 'FAQs',
},
{
type: 'category',
label: 'Sessions & Reports',
link: {
type: 'generated-index',
description:
'Understand chat sessions and set up automated email reports.',
},
items: [
{
type: 'doc',
id: 'sessions/overview', // existing overview
label: 'Sessions Overview',
},
{
type: 'doc',
id: 'sessions/chat-activity-reports',
label: 'Chat Activity Reports', // ← new page
},
],
},
{
type: 'category',
label: 'How-to Guides',
link: {
type: 'generated-index',
description: 'Step‑by‑step recipes',
},
items: [
{
type: 'doc',
id: 'how-to/how-to-enable-disable-streaming',
label: 'Enabling & Disabling Streaming',
},
{
type: 'doc',
id: 'how-to/removing-openai-citations',
label: 'Removing OpenAI Citations',
}
],
},
{
type: 'category',
label: 'Reference',
link: {
type: 'generated-index',
description: 'Explore widget types, props you can customize, API endpoints, and setup guide WhatsApp Business.',
},
items: [
{
type: 'category',
label: 'Widgets',
link: {
"type": "generated-index",
"description": "Customize & style the different widgets"
},
items: [
{
type: 'doc',
id: 'widgets/standard',
label: 'Standard'
},
{
type: 'doc',
id: 'widgets/popup',
label: 'Popup'
},
{
type: 'doc',
id: 'widgets/bubble',
label: 'Bubble'
},
{
type: 'doc',
id: 'widgets/ai-button',
label: 'AI Topic Button'
}
],
},
{
type: 'category',
label: "WhatsApp Business Setup",
link: {
"type": "generated-index",
"description": "Setup your WhatsApp business account."
},
items: [
'whatsapp/create-a-business-account',
{
type: 'doc',
id: 'whatsapp/create-a-meta-app',
label: 'Create a Meta App'
},
{
type: 'doc',
id: 'whatsapp/generate-whatsapp-token',
label: 'Generate a WhatsApp Token'
},
{
type: 'doc',
id: 'whatsapp/add-phone-number',
label: 'Add Phone Number to WhatsApp'
} ],
},
{
type: 'category',
label: "API Reference (Beta)",
link: {
"type": "generated-index",
"description": "Management API for agents"
},
items: [
{
type: 'doc',
id: 'api-reference/introduction',
label: 'Introduction'
},
{
type: 'doc',
id: 'api-reference/authentication',
label: 'Authentication'
},
{
type: 'doc',
id: 'api-reference/making-requests',
label: 'Making Requests'
},
{
type: 'doc',
id: 'api-reference/endpoints',
label: 'Endpoints'
},
],
}
],
}
],
};
export default sidebars;