forked from epam/ai-dial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
464 lines (463 loc) · 14.5 KB
/
sidebars.js
File metadata and controls
464 lines (463 loc) · 14.5 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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
CustomSideBar: [
{
type: 'doc',
id: 'README', // document ID
label: 'Home', // sidebar label
},
{
type: 'doc',
id: 'quick-start',
label: 'Quick Start',
},
{
type: 'category',
label: 'Platform',
items: [
{
type: 'category',
label: 'Architecture & Concepts',
items: [
{
type: 'doc',
id: 'platform/architecture-and-concepts/vision',
label: 'What is DIAL',
},
{
type: 'doc',
id: 'platform/architecture-and-concepts/concepts',
label: 'Main Concepts',
},
{
type: 'doc',
id: 'platform/architecture-and-concepts/architecture',
label: 'Architecture Highlights',
},
{
type: 'doc',
id: 'platform/architecture-and-concepts/components',
label: 'Platform Components',
},
{
type: 'doc',
id: 'platform/architecture-and-concepts/agentic-platform',
label: 'Agentic Platform',
},
],
},
{
type: 'doc',
id: 'platform/deployment-intro',
label: 'Deployment',
},
{
type: 'doc',
id: 'platform/supported-models',
label: 'AI Model Providers',
},
{
type: 'category',
label: 'Core',
items: [
{
type: 'doc',
id: 'platform/core/about-core',
label: 'About',
},
{
type: 'doc',
id: 'platform/core/auth-intro',
label: 'Authentication',
},
{
type: 'doc',
id: 'platform/core/access-control-intro',
label: 'Access & Cost Control',
},
{
type: 'doc',
id: 'platform/core/per-request-keys',
label: 'Per-Request Keys',
},
{
type: 'doc',
id: 'platform/core/privacy',
label: 'PII Compliance & Privacy',
},
{
type: 'doc',
id: 'platform/core/load-balancer',
label: 'Load Balancer',
},
{
type: 'doc',
id: 'platform/core/interceptors',
label: 'Interceptors',
},
],
},
{
type: 'category',
label: 'Chat',
items: [
{
type: 'doc',
id: 'platform/chat/about-chat',
label: 'About',
},
{
type: 'doc',
id: 'platform/chat/marketplace',
label: 'Marketplace',
},
{
type: 'doc',
id: 'platform/chat/data-visualization-intro',
label: 'Data Visualization',
},
],
},
{
type: 'doc',
id: 'platform/multimodality',
label: 'Multimodality',
},
{
type: 'doc',
id: 'platform/realtime-analytics-intro',
label: 'Analytics',
},
{
type: 'doc',
id: 'platform/collaboration-intro',
label: 'Collaboration',
},
{
type: 'doc',
id: 'platform/observability-intro',
label: 'Observability',
},
{
type: 'doc',
id: 'platform/high-load-performance',
label: 'Handling High Loads',
},
{
type: 'doc',
id: 'legal-and-compliance',
label: 'Compliance and Legal Q&A',
},
],
},
{
type: 'category',
label: 'Tutorials',
items: [
{
type: 'doc',
id: 'tutorials/user-guide',
label: 'Chat User Guide',
},
{
type: 'category',
label: 'Developers',
items: [
{
type: 'category',
label: 'Run AI DIAL Locally',
items: [
{
type: 'doc',
id: 'tutorials/developers/local-run/quick-start-with-application',
label: 'Chat with Application',
},
{
type: 'doc',
id: 'tutorials/developers/local-run/quick-start-model',
label: 'Chat with OpenAI Model',
},
{
type: 'doc',
id: 'tutorials/developers/local-run/quick-start-with-self-hosted-model',
label: 'Chat with a Self-Hosted Model',
},
{
type: 'doc',
id: 'tutorials/developers/local-run/quick-start-with-addon',
label: 'Chat with Addon',
},
],
},
{
type: 'category',
label: 'Working with Resources',
items: [
{
type: 'doc',
id: 'tutorials/developers/work-with-resources/work-with-publications',
label: 'Publications',
},
{
type: 'doc',
id: 'tutorials/developers/work-with-resources/sharing',
label: 'Sharing',
},
{
type: 'doc',
id: 'tutorials/developers/work-with-resources/notifications',
label: 'Notifications',
},
],
},
{
type: 'category',
label: 'Chat',
items: [
{
type: 'doc',
id: 'tutorials/developers/chat/chat-objects',
label: 'Custom Content in Chat',
},
{
type: 'doc',
id: 'tutorials/developers/chat/localization',
label: 'Chat Localization',
},
{
type: 'doc',
id: 'tutorials/developers/chat/create-custom-visualizer',
label: 'Create Visualizer',
},
{
type: 'doc',
id: 'tutorials/developers/chat/chat-design',
label: 'Design Structure',
},
],
},
{
type: 'category',
label: 'Apps Development',
items: [
{
type: 'doc',
id: 'tutorials/developers/apps-development/adapter-dial',
label: 'Local Development',
},
{
type: 'doc',
id: 'tutorials/developers/apps-development/enable-app',
label: 'Enable Apps',
},
{
type: 'doc',
id: 'tutorials/developers/apps-development/quick-app-configuration',
label: 'How to Configure Quick App',
},
{
type: 'doc',
id: 'tutorials/developers/apps-development/custom-buttons',
label: 'Custom Buttons in Apps',
},
{
type: 'doc',
id: 'tutorials/developers/apps-development/auth-matrix',
label: 'Auth Matrix',
},
{
type: 'category',
label: 'Examples',
items: [
'tutorials/developers/apps-development/multimodality/dial-cookbook/examples/how_to_call_text_to_text_applications',
'tutorials/developers/apps-development/multimodality/dial-cookbook/examples/how_to_call_text_to_image_applications',
'tutorials/developers/apps-development/multimodality/dial-cookbook/examples/how_to_call_image_to_text_applications',
'tutorials/developers/apps-development/multimodality/dial-cookbook/examples/how_to_call_dalle_3_with_configuration',
],
},
],
},
{
type: 'category',
label: 'Integrations',
items: [
{
type: 'doc',
id: 'tutorials/developers/integrations/copilot-to-dial',
label: 'Integration with MS Copilot',
},
],
},
],
},
{
type: 'category',
label: 'DevOps',
items: [
{
type: 'category',
label: 'Deployment',
items: [
{
type: 'link',
label: 'Helm Deployment',
href: 'https://github.com/epam/ai-dial-helm/tree/main/charts/dial/examples/generic/simple',
},
{
type: 'doc',
id: 'tutorials/devops/deployment/custom_apps_deployment',
label: 'Custom Apps Deployment',
},
{
type: 'doc',
id: 'tutorials/devops/deployment/azure-secrets',
label: 'Azure Secrets Deployment',
},
{
type: 'doc',
id: 'tutorials/devops/deployment/azure-deployment-guide',
label: 'Azure Deployment Guide',
},
{
type: 'category',
label: 'Deployment of Models',
items: [
{
type: 'doc',
id: 'tutorials/devops/deployment/deployment-of-models/openai-model-deployment',
label: 'OpenAI Model Deployment',
},
{
type: 'doc',
id: 'tutorials/devops/deployment/deployment-of-models/vertex-model-deployment',
label: 'Vertex Model Deployment',
},
{
type: 'doc',
id: 'tutorials/devops/deployment/deployment-of-models/bedrock-model-deployment',
label: 'Bedrock Model Deployment',
},
],
},
],
},
{
type: 'category',
label: 'Configuration',
items: [
{
type: 'doc',
id: 'tutorials/devops/configuration/configuration-guide',
label: 'Configuration Guide',
},
{
type: 'doc',
id: 'tutorials/devops/configuration/realtime-analytics-config',
label: 'Analytics Realtime Configuration',
},
{
type: 'doc',
id: 'tutorials/devops/configuration/enable-publications-chat',
label: 'Enable Publications',
},
],
},
{
type: 'category',
label: 'Auth & Access Control',
items: [
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/programmatic-auth',
label: 'Create API Keys',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/api-key-roles',
label: 'API Keys Roles & Limits',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/chat-users-roles',
label: 'JWT Roles & Limits',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/azure-ad-configuration',
label: 'Azure AD Configuration',
},
{
type: 'category',
label: 'Configure IDPs',
items: [
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/configure-idps/overview',
label: 'Overview',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/configure-idps/auth0',
label: 'Auth0',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/configure-idps/cognito',
label: 'AWS Cognito',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/configure-idps/entraID',
label: 'Microsoft Entra',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/configure-idps/google',
label: 'Google Identity',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/configure-idps/keycloak',
label: 'Keycloak',
},
{
type: 'doc',
id: 'tutorials/devops/auth-and-access-control/configure-idps/okta',
label: 'Okta',
},
],
},
],
},
{
type: 'doc',
id: 'tutorials/devops/observability-config',
label: 'Observability',
},
{
type: 'doc',
id: 'tutorials/devops/use-databricks-model',
label: 'Use Databricks Models',
},
],
},
],
},
{
type: 'link',
label: 'API Reference',
href: 'https://dialx.ai/dial_api',
},
{
type: 'category',
label: 'Demos',
items: [
{
type: 'autogenerated',
dirName: 'video demos',
},
],
},
],
};
export default sidebars;