-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path_meta.ts
More file actions
156 lines (147 loc) · 5.65 KB
/
_meta.ts
File metadata and controls
156 lines (147 loc) · 5.65 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/**
* elizaOS Cloud Documentation - Navigation Structure
*
* Organized to match the dashboard sidebar structure for consistency
* and ease of navigation between docs and the platform.
*/
const meta = {
index: {
title: "Introduction",
theme: {
layout: "full",
toc: false,
},
},
// ─────────────────────────────────────────────────────────────────────
// Getting Started
// ─────────────────────────────────────────────────────────────────────
"-- getting-started": {
type: "separator",
title: "Getting Started",
},
quickstart: {
title: "Quickstart Guide",
},
installation: {
title: "Installation",
},
authentication: {
title: "Authentication",
},
"wallet-api": {
title: "Wallet API",
},
// ─────────────────────────────────────────────────────────────────────
// Core Features - Agents
// ─────────────────────────────────────────────────────────────────────
"-- agents-section": {
type: "separator",
title: "Agents",
},
agents: {
title: "AI Agents",
},
"agent-creator": {
title: "Agent Creator",
},
"character-json": {
title: "Character JSON",
},
// ─────────────────────────────────────────────────────────────────────
// Generation Studio
// ─────────────────────────────────────────────────────────────────────
"-- generation-section": {
type: "separator",
title: "Generation Studio",
},
"image-generation": {
title: "Image Generation",
},
"video-generation": {
title: "Video Generation",
},
"voice-cloning": {
title: "Voice Cloning",
},
gallery: {
title: "Gallery",
},
// ─────────────────────────────────────────────────────────────────────
// Infrastructure
// ─────────────────────────────────────────────────────────────────────
"-- infrastructure-section": {
type: "separator",
title: "Infrastructure",
},
apps: {
title: "Apps",
},
"app-domains": {
title: "App Domains",
},
containers: {
title: "Containers",
},
mcps: {
title: "MCP Integration",
},
knowledge: {
title: "Knowledge Base",
},
// ─────────────────────────────────────────────────────────────────────
// Monetization
// ─────────────────────────────────────────────────────────────────────
"-- monetization-section": {
type: "separator",
title: "Monetization",
},
earnings: {
title: "Earnings",
},
billing: {
title: "Billing & Credits",
},
// ─────────────────────────────────────────────────────────────────────
// API Reference (Nested folder with sidebar)
// ─────────────────────────────────────────────────────────────────────
"-- api-section": {
type: "separator",
title: "API Reference",
},
api: {
title: "REST API",
},
// ─────────────────────────────────────────────────────────────────────
// Protocols
// ─────────────────────────────────────────────────────────────────────
"-- protocols-section": {
type: "separator",
title: "Protocols",
},
a2a: {
title: "A2A Protocol",
},
mcp: {
title: "MCP Protocol",
},
// ─────────────────────────────────────────────────────────────────────
// Reference
// ─────────────────────────────────────────────────────────────────────
"-- reference-section": {
type: "separator",
title: "Reference",
},
"rate-limits": {
title: "Rate Limits",
},
errors: {
title: "Error Handling",
},
sdks: {
title: "SDKs & Libraries",
},
changelog: {
title: "Changelog",
},
};
export default meta;