-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathjp_app_launcher.yaml
More file actions
98 lines (90 loc) · 2.32 KB
/
jp_app_launcher.yaml
File metadata and controls
98 lines (90 loc) · 2.32 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
# ref: https://jupyter-app-launcher.readthedocs.io/en/stable/usage.html
- title: "1. Introduction to Agents"
description: ""
source: http://localhost:$PORT/
cwd: "/project/.devx/1-build-an-agent"
type: local-server
args:
- "python3"
- "-m"
- "http.server"
- $PORT
icon: /project/.devx/_static/img/nvidia-icon.svg
catalog: NVIDIA DevX Learning Path
- title: "2. Agentic RAG"
description: ""
source: http://localhost:$PORT/
cwd: "/project/.devx/2-agentic-rag"
type: local-server
args:
- "python3"
- "-m"
- "http.server"
- $PORT
icon: /project/.devx/_static/img/nvidia-icon.svg
catalog: NVIDIA DevX Learning Path
- title: "3. Agent Evaluation"
description: ""
source: http://localhost:$PORT/
cwd: "/project/.devx/3-agent-evaluation"
type: local-server
args:
- "python3"
- "-m"
- "http.server"
- $PORT
icon: /project/.devx/_static/img/nvidia-icon.svg
catalog: NVIDIA DevX Learning Path
- title: "4. Agent Customization"
description: ""
source: http://localhost:$PORT/
cwd: "/project/.devx/4-agent-customization"
type: local-server
args:
- "python3"
- "-m"
- "http.server"
- $PORT
icon: /project/.devx/_static/img/nvidia-icon.svg
catalog: NVIDIA DevX Learning Path
- title: "5. Deep Agents"
description: ""
source: http://localhost:$PORT/
cwd: "/project/.devx/5-deep-agents"
type: local-server
args:
- "python3"
- "-m"
- "http.server"
- $PORT
icon: /project/.devx/_static/img/nvidia-icon.svg
catalog: NVIDIA DevX Learning Path
- title: "Secrets Manager"
source: /project/code/secrets_management/secrets_management_master.ipynb
cwd: /projects
args: {}
type: notebook-voila
icon: /project/.devx/_static/img/key.svg
catalog: NVIDIA DevX Learning Path
- title: "Simple Agents Client"
source: http://localhost:$PORT/
cwd: /project/code/2-agentic-rag
type: local-server
args:
- streamlit
- run
- simple_client.py
- --server.port
- $PORT
icon: /project/.devx/_static/img/chatbot.svg
catalog: NVIDIA DevX Learning Path
- title: "Deep Agents Client"
source: http://localhost:$PORT/
cwd: /project/demo
type: local-server
args:
- bash
- -c
- npm run build && npm run preview -- --port $PORT
icon: /project/.devx/_static/img/chatbot.svg
catalog: NVIDIA DevX Learning Path