-
Notifications
You must be signed in to change notification settings - Fork 2
/
sidebars.js
127 lines (122 loc) · 3.01 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
/**
* 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 = {
docSidebar: [
"introduction",
{
type: "category",
label: "Getting Started",
items: [
"getting-started/introduction",
"getting-started/ui",
"getting-started/first-app",
],
},
"providers",
{
type: "category",
label: "Processors",
link: { type: "doc", id: "processors/introduction" },
items: [
"processors/promptly",
"processors/openai",
"processors/azure",
"processors/google",
"processors/anthropic",
"processors/cohere",
"processors/stability",
"processors/elevenlabs",
"processors/localai",
"processors/linkedin",
"processors/juniper",
],
},
{
type: "category",
label: "Apps",
link: { type: "doc", id: "apps/introduction" },
items: [
"apps/types",
"apps/builder",
"apps/yaml",
"apps/variables",
"apps/templates",
"apps/sharing",
{
type: "category",
label: "Integrations",
items: [
"apps/integrations/web",
"apps/integrations/embed",
"apps/integrations/api",
"apps/integrations/discord",
"apps/integrations/slack",
"apps/integrations/twilio",
"apps/integrations/whatsapp",
],
},
],
},
{
type: "category",
label: "Datasources",
link: { type: "doc", id: "datasources/introduction" },
items: [],
},
{
type: "category",
label: "Connections",
link: { type: "doc", id: "connections/introduction" },
items: [],
},
{
type: "category",
label: "Sheets",
link: { type: "doc", id: "sheets/introduction" },
items: [
"sheets/types-and-features",
"sheets/working-with-sheets",
"sheets/advanced-usage",
],
},
{
type: "category",
label: "APIs",
link: { type: "doc", id: "apis/introduction" },
items: [],
},
{
type: "category",
label: "Guides",
items: [
"guides/no-code-voice-agents",
"guides/realtime-avatar-with-rag",
"guides/using-llama3-with-ollama",
],
},
{
type: "category",
label: "LLMStack",
items: [
"llmstack/introduction",
"llmstack/ui",
"llmstack/config",
"llmstack/administration",
"llmstack/deployment",
"llmstack/development",
"llmstack/contributing",
"llmstack/add-custom-processor",
"llmstack/add-external-datasource",
],
},
],
};
module.exports = sidebars;