-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
59 lines (58 loc) · 2.14 KB
/
Copy pathsidebars.js
File metadata and controls
59 lines (58 loc) · 2.14 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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
mainSidebar: [
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
{ type: 'doc', id: 'home/introduction', customProps: { icon: 'house' } },
{ type: 'doc', id: 'home/quickstart', customProps: { icon: 'rocket-launch' } },
],
},
{
type: 'category',
label: 'Deployments',
collapsed: false,
items: [
{ type: 'doc', id: 'apps/llm', customProps: { icon: 'messages' } },
{ type: 'doc', id: 'apps/inference', customProps: { icon: 'circle-nodes' } },
{ type: 'doc', id: 'apps/compute', customProps: { icon: 'microchip' } },
],
},
{
type: 'category',
label: 'Clients',
collapsed: false,
items: [
{ type: 'doc', id: 'clients/setup', customProps: { icon: 'square-terminal' } },
{ type: 'doc', id: 'clients/sdk', customProps: { icon: 'python' } },
],
},
{
type: 'category',
label: 'Resources',
collapsed: false,
items: [
{ type: 'doc', id: 'resources/custom_image', customProps: { icon: 'screwdriver-wrench' } },
{ type: 'doc', id: 'resources/grpc', customProps: { icon: 'waypoints' } },
{ type: 'doc', id: 'resources/private', customProps: { icon: 'lock' } },
{ type: 'doc', id: 'resources/json_and_tool', customProps: { icon: 'user-secret' } },
{ type: 'doc', id: 'resources/requesting_support', customProps: { icon: 'headset' } },
{ type: 'doc', id: 'resources/vault', customProps: { icon: 'key-skeleton-left-right' } },
{ type: 'doc', id: 'resources/model_integration_lifecycle', customProps: { icon: 'arrows-spin' } },
],
},
{
type: 'category',
label: 'Examples',
collapsed: false,
items: [
{ type: 'doc', id: 'examples/codex', customProps: { icon: 'book-atlas' } },
{ type: 'doc', id: 'examples/flux', customProps: { icon: 'images' } },
{ type: 'doc', id: 'examples/json_schema', customProps: { icon: 'code-simple' } },
],
},
],
};
module.exports = sidebars;