forked from epam/ai-dial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
140 lines (139 loc) · 3.5 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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
CustomSideBar: [
{
type: 'doc',
id: 'README', // document ID
label: 'Home', // sidebar label
},
'quick-start',
'architecture',
'supported-models',
{
type: 'category',
label: 'Tutorials',
items: [
{
type: 'doc',
id: 'tutorials/quick-start-with-application',
label: 'Chat with Application',
},
{
type: 'doc',
id: 'tutorials/quick-start-model',
label: 'Chat with OpenAI Model',
},
{
type: 'doc',
id: 'tutorials/quick-start-with-addon',
label: 'Chat with Addon',
},
{
type: 'doc',
id: 'tutorials/roles-management',
label: 'API Keys Roles and Limits',
},
{
type: 'doc',
id: 'tutorials/rate-limits-users',
label: 'Configure Rate Limits for Chat Users',
},
{
type: 'doc',
id: 'tutorials/high-load-performance',
label: 'Handling High Loads',
}
],
},
'user-guide',
'chat-design',
{
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: 'Deployment/configuration',
label: 'Configuration'
},
{
'IDP Configuration': [
{
type:'doc',
id: 'Deployment/idp-configuration/auth0',
label: 'Auth0'
},
{
type:'doc',
id: 'Deployment/idp-configuration/cognito',
label: 'AWS Cognito'
},
{
type:'doc',
id: 'Deployment/idp-configuration/entraID',
label: 'Microsoft Entra'
},
{
type:'doc',
id: 'Deployment/idp-configuration/google',
label: 'Google OAuth2'
},
{
type:'doc',
id: 'Deployment/idp-configuration/keycloak',
label: 'Keycloak'
},
{
type:'doc',
id: 'Deployment/idp-configuration/okta',
label: 'Okta'
},
],
},
'Deployment/OpenAI Model Deployment',
'Deployment/Vertex Model Deployment',
'Deployment/Bedrock Model Deployment',
],
},
{
type: 'category',
label: 'Cookbook',
items: [
"Cookbook/dial-cookbook/examples/how_to_call_text_to_text_applications",
"Cookbook/dial-cookbook/examples/how_to_call_text_to_image_applications",
"Cookbook/dial-cookbook/examples/how_to_call_image_to_text_applications",
],
},
{
type: 'link',
label: 'API Reference',
href: 'https://epam-rail.com/dial_api'
},
{
type: 'category',
label: 'Video Demos',
items: [
{
Demos: [
{
type: 'autogenerated',
dirName: 'video demos/demos',
},
],
'Demos For Developers': [
{
type: 'autogenerated',
dirName: 'video demos/demos-for-developers',
},
],
},
]
}
],
};
export default sidebars;