This repository was archived by the owner on Feb 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsidebars.ts
More file actions
87 lines (79 loc) · 1.73 KB
/
sidebars.ts
File metadata and controls
87 lines (79 loc) · 1.73 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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
// --- Core docs ---
'intro',
'getting-started',
'architecture',
'guardrails',
// --- Platform internals ---
{
type: 'category',
label: 'Platform Internals',
items: [
'vllm',
'attestation',
],
},
// --- API documentation ---
{
type: 'category',
label: 'API',
items: [
'api/overview',
'api/authentication',
'auth/pats',
'api/models',
'api/chat-completions',
'api/completions',
'api/embeddings',
'api/speech-to-text',
'api/translations',
'api/routes',
],
},
// --- Integrations ---
{
type: 'category',
label: 'Integrations',
items: [
'integrations/continue',
'integrations/opencode',
],
},
// --- Developer Guide ---
{
type: 'category',
label: 'Developer Guide',
items: [
'developer-guide/index',
'developer-guide/chat-ui',
'developer-guide/private-model-upload',
'developer-guide/hal',
'developer-guide/cvm-management',
'developer-guide/fine-tuning',
'developer-guide/auth-and-request-flow',
],
},
// --- UI ---
{
type: 'category',
label: 'UI',
items: [
'ui/overview',
'ui/domains',
'ui/user-actions',
],
},
// --- Security & Access ---
{
type: 'category',
label: 'Security & Access',
items: [
'security/roles-and-access-control',
'security/audit-logs',
],
},
],
};
export default sidebars;