-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsidebars.ts
More file actions
110 lines (108 loc) · 2.6 KB
/
sidebars.ts
File metadata and controls
110 lines (108 loc) · 2.6 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docs: [
'Overview', // Changed from 'Introduction' to 'Overview' as that's what exists
{
type: 'category',
label: 'Contributing',
items: [
'Contributing/module-builder',
'Contributing/infrastructure-contributor',
],
},
{
type: 'category',
label: 'Getting Started',
items: [
'GettingStarted/Architecture',
'GettingStarted/create-a-new-user',
'GettingStarted/InstallSDK',
'GettingStarted/NapthaCLI',
],
},
{
type: 'category',
label: 'Naptha Hub',
items: [
'NapthaHub/NapthaHub',
'NapthaHub/nodes',
'NapthaHub/secrets',
],
},
{
type: 'category',
label: 'Naptha Modules',
items: [
'NapthaModules/overview',
'NapthaModules/agents',
'NapthaModules/tools',
'NapthaModules/knowledge-bases',
'NapthaModules/memories',
'NapthaModules/personas',
'NapthaModules/orchestrators',
'NapthaModules/environments',
],
},
{
type: 'category',
label: 'Integrations',
items: [
'Integrations/Decorators',
'Integrations/CrewAI',
'Integrations/Autogen',
'Integrations/LangChain', // Fixed capitalization
'Integrations/LlamaIndex',
],
},
{
type: 'category',
label: 'Naptha Inference',
items: [
'NapthaInference/overview', // Changed from 0-overview
'NapthaInference/inference', // Changed from 1-inference
],
},
{
type: 'category',
label: 'Naptha Storage',
items: [
'NapthaStorage/overview',
'NapthaStorage/database',
'NapthaStorage/files',
'NapthaStorage/ipfs',
],
},
{
type: 'category',
label: 'Run a Naptha Node',
items: [
'NapthaNodes/quickstart', // Changed from what-are-nodes
'NapthaNodes/custom', // Added existing pages
'NapthaNodes/advanced',
'NapthaNodes/docker',
'NapthaNodes/systemd',
],
},
{
type: 'category',
label: 'Examples',
items: [
'Examples/index',
'Examples/HelloWorld',
'Examples/GenerateImage',
'Examples/MultiplayerChat',
],
},
{
type: 'category',
label: 'Tutorials',
items: [
'Tutorials/index',
'Tutorials/module-guide',
'Tutorials/quick-persona-guide',
],
},
'reference',
],
};
export default sidebars;