-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathsidebarsDocsPython.js
More file actions
59 lines (59 loc) · 1.55 KB
/
Copy pathsidebarsDocsPython.js
File metadata and controls
59 lines (59 loc) · 1.55 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
module.exports = {
docsPythonSidebar: [
'overview',
'getting-started',
{
type: 'category',
label: 'Features',
collapsed: false,
items: [
{
type: 'category',
label: 'Agent Modules',
collapsed: false,
items: [
'features/agent-modules/tool-decorators',
'features/agent-modules/agent-gateway',
'features/agent-modules/agent-memory',
'features/agent-modules/ai-core'
]
},
{
type: 'category',
label: 'Connectivity & Identity',
collapsed: false,
items: [
'features/connectivity/destination-service',
'features/connectivity/identity-ias',
'features/connectivity/secret-management'
]
},
{
type: 'category',
label: 'Core Modules',
collapsed: false,
items: [
'features/core-modules/audit-logging',
'features/core-modules/telemetry',
'features/core-modules/object-storage',
'features/core-modules/runtime-context'
]
},
{
type: 'category',
label: 'RBS Services',
collapsed: false,
items: [
'features/rbs-services/dms',
'features/rbs-services/adms',
'features/rbs-services/output-management',
'features/rbs-services/print-service'
]
}
]
},
'release-notes',
'support',
'troubleshooting'
]
};