-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsidebarsLearn.ts
More file actions
81 lines (79 loc) · 1.75 KB
/
Copy pathsidebarsLearn.ts
File metadata and controls
81 lines (79 loc) · 1.75 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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebarsLearn: SidebarsConfig = {
learnSidebar: [
{
type: 'doc',
id: 'index',
label: 'Welcome',
},
{
type: 'category',
label: 'Getting Started',
collapsible: false,
className: 'learn-category-header',
items: [
{
type: 'doc',
id: 'getting-started/install-and-connect-harper',
label: 'Install and Connect Harper',
},
{
type: 'doc',
id: 'getting-started/create-your-first-application',
label: 'Create your First Application',
},
{
type: 'doc',
id: 'getting-started/using-agents',
label: 'Using AI Agents',
},
],
},
{
type: 'category',
label: 'Developers',
collapsible: false,
className: 'learn-category-header',
items: [
{
type: 'doc',
id: 'developers/harper-applications-in-depth',
label: 'Harper Applications in Depth',
},
{
type: 'doc',
id: 'developers/caching-with-harper',
label: 'Caching with Harper',
},
{
type: 'doc',
id: 'developers/active-caching-subscriptions',
label: 'Active Caching with Subscriptions',
},
{
type: 'doc',
id: 'developers/semantic-caching-vector-indexing',
label: 'Semantic Caching with Vector Indexing',
},
{
type: 'doc',
id: 'developers/write-through-caching',
label: 'Write-Through Caching',
},
{
type: 'doc',
id: 'developers/deploying-from-ci',
label: 'Deploying from a CI/CD Pipeline',
},
],
},
{
type: 'category',
label: 'Administration',
collapsible: false,
className: 'learn-category-header',
items: [{ type: 'autogenerated', dirName: 'administration' }],
},
],
};
export default sidebarsLearn;