-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab-config.js
More file actions
53 lines (51 loc) · 1.58 KB
/
lab-config.js
File metadata and controls
53 lines (51 loc) · 1.58 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
// Toggle Lab Mode
export const LAB = String(process.env.LAB_MODE ?? '').toLowerCase().trim();
export const LAB_CONFIG = {
default: {
title: 'Context Engineering with Redis & LangChain',
hero: {
tagline: 'Context Engineering with Redis & LangChain',
subtitle: 'Engineer every layer of context as you evolve a course advisor agent from baseline RAG to a full agent',
homeLink: '/intro/welcome/'
},
sidebar: [
{
label: 'Introduction',
items: [
'intro/welcome',
'intro/getting-started',
]
},
{
label: 'Wrap up',
items: [
'wrap-up/finish-lab'
]
}
]
},
ws: {
title: 'Redis Workshop: Context Engineering',
hero: {
tagline: 'Context Engineering Workshop with Redis & LangChain',
subtitle: 'Engineer every layer of context as you evolve a course advisor agent from baseline RAG to a full agent',
homeLink: '/intro-ws/welcome/'
},
sidebar: [
{
label: 'Introduction',
items: [
'intro-ws/welcome',
'intro-ws/getting-started',
]
},
{
label: 'Wrap up',
items: [
'wrap-up-ws/finish-lab'
]
}
]
}
};
export const config = LAB_CONFIG[LAB] || LAB_CONFIG.default;