Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,482 +1,312 @@
|
|
1 |
-
|
2 |
-
import os
|
3 |
-
import json
|
4 |
-
import uuid
|
5 |
-
from datetime import datetime
|
6 |
-
from groq import Groq
|
7 |
-
|
8 |
-
# Set up Groq API key
|
9 |
-
GROQ_API_KEY = os.environ.get("GROQ_API_KEY")
|
10 |
-
if not GROQ_API_KEY:
|
11 |
-
raise ValueError("GROQ_API_KEY environment variable not set.")
|
12 |
-
|
13 |
-
client = Groq(api_key=GROQ_API_KEY)
|
14 |
-
|
15 |
-
# Default system prompt
|
16 |
-
SYSTEM_PROMPT = (
|
17 |
-
"You are an intelligent, friendly, and highly adaptable Teaching Assistant Chatbot. "
|
18 |
-
"Your mission is to help users of all ages and skill levels—from complete beginners to seasoned professionals—learn Python, Data Science, and Artificial Intelligence. "
|
19 |
-
"You explain concepts clearly using real-world analogies, examples, and interactive exercises. "
|
20 |
-
"You ask questions to assess the learner's level, adapt accordingly, and provide learning paths tailored to their pace and goals. "
|
21 |
-
"Your responses are structured, engaging, and supportive. "
|
22 |
-
"You can explain code snippets, generate exercises and quizzes, and recommend projects. "
|
23 |
-
"You never overwhelm users with jargon. Instead, you scaffold complex concepts in simple, digestible steps."
|
24 |
-
)
|
25 |
-
|
26 |
-
# Define learning paths
|
27 |
-
LEARNING_PATHS = {
|
28 |
-
"python_beginner": {
|
29 |
-
"title": "Python Fundamentals",
|
30 |
-
"description": "Learn Python basics from variables to functions",
|
31 |
-
"modules": [
|
32 |
-
"Variables & Data Types",
|
33 |
-
"Control Flow",
|
34 |
-
"Functions",
|
35 |
-
"Data Structures",
|
36 |
-
"File I/O"
|
37 |
-
]
|
38 |
-
},
|
39 |
-
"python_intermediate": {
|
40 |
-
"title": "Intermediate Python",
|
41 |
-
"description": "Advance your Python skills with OOP and more",
|
42 |
-
"modules": [
|
43 |
-
"Object-Oriented Programming",
|
44 |
-
"Modules & Packages",
|
45 |
-
"Error Handling",
|
46 |
-
"List Comprehensions",
|
47 |
-
"Decorators & Generators"
|
48 |
-
]
|
49 |
-
},
|
50 |
-
"data_science_beginner": {
|
51 |
-
"title": "Data Science Foundations",
|
52 |
-
"description": "Begin your data science journey",
|
53 |
-
"modules": [
|
54 |
-
"Numpy Basics",
|
55 |
-
"Pandas Fundamentals",
|
56 |
-
"Data Visualization",
|
57 |
-
"Basic Statistics",
|
58 |
-
"Intro to Machine Learning"
|
59 |
-
]
|
60 |
-
},
|
61 |
-
"data_science_advanced": {
|
62 |
-
"title": "Advanced Data Science",
|
63 |
-
"description": "Master complex data science concepts",
|
64 |
-
"modules": [
|
65 |
-
"Advanced ML Algorithms",
|
66 |
-
"Feature Engineering",
|
67 |
-
"Time Series Analysis",
|
68 |
-
"Natural Language Processing",
|
69 |
-
"Deep Learning Basics"
|
70 |
-
]
|
71 |
-
},
|
72 |
-
"ai_specialization": {
|
73 |
-
"title": "AI Specialization",
|
74 |
-
"description": "Focus on artificial intelligence concepts",
|
75 |
-
"modules": [
|
76 |
-
"Neural Networks",
|
77 |
-
"Computer Vision",
|
78 |
-
"Advanced NLP",
|
79 |
-
"Reinforcement Learning",
|
80 |
-
"AI Ethics"
|
81 |
-
]
|
82 |
-
},
|
83 |
-
"generative_ai": {
|
84 |
-
"title": "Generative AI",
|
85 |
-
"description": "Learn how to build and work with generative AI systems",
|
86 |
-
"modules": [
|
87 |
-
"Generative Models Overview",
|
88 |
-
"GANs & Diffusion Models",
|
89 |
-
"Large Language Models",
|
90 |
-
"Prompt Engineering",
|
91 |
-
"Fine-tuning & RLHF"
|
92 |
-
]
|
93 |
-
},
|
94 |
-
"agentic_ai": {
|
95 |
-
"title": "Agentic AI Systems",
|
96 |
-
"description": "Explore AI systems that can act autonomously",
|
97 |
-
"modules": [
|
98 |
-
"Foundations of AI Agents",
|
99 |
-
"Planning & Decision Making",
|
100 |
-
"Tool-using AI Systems",
|
101 |
-
"Multi-agent Architectures",
|
102 |
-
"Human-AI Collaboration"
|
103 |
-
]
|
104 |
-
}
|
105 |
-
}
|
106 |
-
|
107 |
-
# Learning resources
|
108 |
-
LEARNING_RESOURCES = {
|
109 |
"Visual": {
|
110 |
"python_beginner": [
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
115 |
],
|
116 |
"python_intermediate": [
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
|
|
121 |
],
|
122 |
"data_science_beginner": [
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
127 |
],
|
128 |
"data_science_advanced": [
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
|
|
133 |
],
|
134 |
"ai_specialization": [
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
|
|
139 |
],
|
140 |
"generative_ai": [
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
|
|
145 |
],
|
146 |
"agentic_ai": [
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
|
|
151 |
]
|
152 |
},
|
153 |
"Reading/Writing": {
|
154 |
"python_beginner": [
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
|
|
159 |
],
|
160 |
"python_intermediate": [
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
|
|
165 |
],
|
166 |
"data_science_beginner": [
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
|
|
171 |
],
|
172 |
"data_science_advanced": [
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
|
|
177 |
],
|
178 |
"ai_specialization": [
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
|
|
183 |
],
|
184 |
"generative_ai": [
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
|
|
189 |
],
|
190 |
"agentic_ai": [
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
|
|
195 |
]
|
196 |
},
|
197 |
"Hands-on Projects": {
|
198 |
"python_beginner": [
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
|
|
203 |
],
|
204 |
"python_intermediate": [
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
|
|
209 |
],
|
210 |
"data_science_beginner": [
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
215 |
],
|
216 |
"data_science_advanced": [
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
|
|
221 |
],
|
222 |
"ai_specialization": [
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
227 |
],
|
228 |
"generative_ai": [
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
|
|
233 |
],
|
234 |
"agentic_ai": [
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
|
|
239 |
]
|
240 |
},
|
241 |
"Video Tutorials": {
|
242 |
"python_beginner": [
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
|
|
247 |
],
|
248 |
"python_intermediate": [
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
253 |
],
|
254 |
"data_science_beginner": [
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
|
|
259 |
],
|
260 |
"data_science_advanced": [
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
|
|
265 |
],
|
266 |
"ai_specialization": [
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
|
|
271 |
],
|
272 |
"generative_ai": [
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
|
|
277 |
],
|
278 |
"agentic_ai": [
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
|
|
283 |
]
|
284 |
},
|
285 |
"Interactive Exercises": {
|
286 |
"python_beginner": [
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
|
|
291 |
],
|
292 |
"python_intermediate": [
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
|
|
297 |
],
|
298 |
"data_science_beginner": [
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
|
|
303 |
],
|
304 |
"data_science_advanced": [
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
|
|
309 |
],
|
310 |
"ai_specialization": [
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
|
|
315 |
],
|
316 |
"generative_ai": [
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
|
|
321 |
],
|
322 |
"agentic_ai": [
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
|
|
327 |
]
|
328 |
},
|
329 |
"Combination": {
|
330 |
"python_beginner": [
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
|
|
335 |
],
|
336 |
"python_intermediate": [
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
|
|
341 |
],
|
342 |
"data_science_beginner": [
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
|
|
347 |
],
|
348 |
"data_science_advanced": [
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
|
|
353 |
],
|
354 |
"ai_specialization": [
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
|
|
359 |
],
|
360 |
"generative_ai": [
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
|
|
365 |
],
|
366 |
"agentic_ai": [
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
|
|
371 |
]
|
372 |
}
|
373 |
}
|
374 |
|
375 |
-
# Practice project ideas
|
376 |
-
PROJECT_IDEAS = {
|
377 |
-
"Visual": {
|
378 |
-
"python_beginner": [
|
379 |
-
"Data Visualization Dashboard with Matplotlib",
|
380 |
-
"Interactive Game with Pygame",
|
381 |
-
"Visual Timer Application with Tkinter",
|
382 |
-
"Color Palette Generator",
|
383 |
-
"Image Processing Tool"
|
384 |
-
],
|
385 |
-
"python_intermediate": [
|
386 |
-
"Data Visualization Web App with Flask and D3.js",
|
387 |
-
"Interactive Map Application",
|
388 |
-
"Animated Data Dashboard",
|
389 |
-
"Custom Visualization Library",
|
390 |
-
"Image Recognition System"
|
391 |
-
],
|
392 |
-
"data_science_beginner": [
|
393 |
-
"Interactive Data Dashboard with Plotly",
|
394 |
-
"Visual Exploratory Data Analysis Tool",
|
395 |
-
"Chart Comparison Application",
|
396 |
-
"Geographic Data Visualization",
|
397 |
-
"Statistical Visualization Gallery"
|
398 |
-
],
|
399 |
-
"data_science_advanced": [
|
400 |
-
"Real-time Visual Analytics Dashboard",
|
401 |
-
"Machine Learning Model Visualizer",
|
402 |
-
"Neural Network Visualization Tool",
|
403 |
-
"Computer Vision Project",
|
404 |
-
"Interactive Data Storytelling Platform"
|
405 |
-
],
|
406 |
-
"ai_specialization": [
|
407 |
-
"Neural Network Architecture Visualizer",
|
408 |
-
"Interactive AI Learning Environment",
|
409 |
-
"Computer Vision Object Detector",
|
410 |
-
"Visual Pattern Recognition System",
|
411 |
-
"Brain-Computer Interface Visualization"
|
412 |
-
],
|
413 |
-
"generative_ai": [
|
414 |
-
"Style Transfer Art Generator",
|
415 |
-
"Visual AI Art Gallery",
|
416 |
-
"Image Generation Dashboard",
|
417 |
-
"Interactive Text-to-Image System",
|
418 |
-
"Visual Prompt Engineering Tool"
|
419 |
-
],
|
420 |
-
"agentic_ai": [
|
421 |
-
"Visual Agent Environment Simulator",
|
422 |
-
"Agent Decision Tree Visualizer",
|
423 |
-
"Multi-Agent Interaction Visualization",
|
424 |
-
"Visual Reinforcement Learning Playground",
|
425 |
-
"Interactive Agent Behavior Explorer"
|
426 |
-
]
|
427 |
-
},
|
428 |
-
"Reading/Writing": {
|
429 |
-
"python_beginner": [
|
430 |
-
"Text File Processing Tool",
|
431 |
-
"Personal Journal Application",
|
432 |
-
"Notes Organization System",
|
433 |
-
"Simple Blog Platform",
|
434 |
-
"Document Analyzer"
|
435 |
-
],
|
436 |
-
"python_intermediate": [
|
437 |
-
"Advanced Text Editor",
|
438 |
-
"Markdown Documentation Generator",
|
439 |
-
"Content Management System",
|
440 |
-
"Personal Wiki Platform",
|
441 |
-
"Technical Documentation Tool"
|
442 |
-
],
|
443 |
-
"data_science_beginner": [
|
444 |
-
"Text Data Analysis Tool",
|
445 |
-
"Literature Review Database",
|
446 |
-
"Research Paper Summarizer",
|
447 |
-
"Study Notes Organizer",
|
448 |
-
"Data Analysis Report Generator"
|
449 |
-
],
|
450 |
-
"data_science_advanced": [
|
451 |
-
"Research Paper Recommendation System",
|
452 |
-
"Advanced NLP Analysis Tool",
|
453 |
-
"Automated Report Generator",
|
454 |
-
"Literature Review AI Assistant",
|
455 |
-
"Technical Writing Assistant"
|
456 |
-
],
|
457 |
-
"ai_specialization": [
|
458 |
-
"Text Summarization System",
|
459 |
-
"AI-Powered Document Analysis",
|
460 |
-
"Scientific Paper Classification Tool",
|
461 |
-
"Sentiment Analysis for Literature",
|
462 |
-
"Technical Writing Enhancement System"
|
463 |
-
],
|
464 |
-
"generative_ai": [
|
465 |
-
"Fine-tuned GPT Model for Specific Domain",
|
466 |
-
"Text-to-Image Generation App",
|
467 |
-
"AI Story Generator",
|
468 |
-
"Custom ChatGPT Plugin",
|
469 |
-
"Music Generation System"
|
470 |
-
],
|
471 |
-
"agentic_ai": [
|
472 |
-
"Autonomous Research Assistant",
|
473 |
-
"Multi-Agent Simulation",
|
474 |
-
"Tool-Using Chatbot",
|
475 |
-
"Task Planning Agent",
|
476 |
-
"Autonomous Data Analysis System"
|
477 |
-
]
|
478 |
-
}
|
479 |
-
|
480 |
# User session data store
|
481 |
SESSION_DATA = {}
|
482 |
|
|
|
1 |
+
PROJECT_IDEAS = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"Visual": {
|
3 |
"python_beginner": [
|
4 |
+
"Data Visualization Dashboard with Matplotlib",
|
5 |
+
"Interactive Game with Pygame",
|
6 |
+
"Visual Timer Application with Tkinter",
|
7 |
+
"Color Palette Generator",
|
8 |
+
"Image Processing Tool"
|
9 |
],
|
10 |
"python_intermediate": [
|
11 |
+
"Data Visualization Web App with Flask and D3.js",
|
12 |
+
"Interactive Map Application",
|
13 |
+
"Animated Data Dashboard",
|
14 |
+
"Custom Visualization Library",
|
15 |
+
"Image Recognition System"
|
16 |
],
|
17 |
"data_science_beginner": [
|
18 |
+
"Interactive Data Dashboard with Plotly",
|
19 |
+
"Visual Exploratory Data Analysis Tool",
|
20 |
+
"Chart Comparison Application",
|
21 |
+
"Geographic Data Visualization",
|
22 |
+
"Statistical Visualization Gallery"
|
23 |
],
|
24 |
"data_science_advanced": [
|
25 |
+
"Real-time Visual Analytics Dashboard",
|
26 |
+
"Machine Learning Model Visualizer",
|
27 |
+
"Neural Network Visualization Tool",
|
28 |
+
"Computer Vision Project",
|
29 |
+
"Interactive Data Storytelling Platform"
|
30 |
],
|
31 |
"ai_specialization": [
|
32 |
+
"Neural Network Architecture Visualizer",
|
33 |
+
"Interactive AI Learning Environment",
|
34 |
+
"Computer Vision Object Detector",
|
35 |
+
"Visual Pattern Recognition System",
|
36 |
+
"Brain-Computer Interface Visualization"
|
37 |
],
|
38 |
"generative_ai": [
|
39 |
+
"Style Transfer Art Generator",
|
40 |
+
"Visual AI Art Gallery",
|
41 |
+
"Image Generation Dashboard",
|
42 |
+
"Interactive Text-to-Image System",
|
43 |
+
"Visual Prompt Engineering Tool"
|
44 |
],
|
45 |
"agentic_ai": [
|
46 |
+
"Visual Agent Environment Simulator",
|
47 |
+
"Agent Decision Tree Visualizer",
|
48 |
+
"Multi-Agent Interaction Visualization",
|
49 |
+
"Visual Reinforcement Learning Playground",
|
50 |
+
"Interactive Agent Behavior Explorer"
|
51 |
]
|
52 |
},
|
53 |
"Reading/Writing": {
|
54 |
"python_beginner": [
|
55 |
+
"Text File Processing Tool",
|
56 |
+
"Personal Journal Application",
|
57 |
+
"Notes Organization System",
|
58 |
+
"Simple Blog Platform",
|
59 |
+
"Document Analyzer"
|
60 |
],
|
61 |
"python_intermediate": [
|
62 |
+
"Advanced Text Editor",
|
63 |
+
"Markdown Documentation Generator",
|
64 |
+
"Content Management System",
|
65 |
+
"Personal Wiki Platform",
|
66 |
+
"Technical Documentation Tool"
|
67 |
],
|
68 |
"data_science_beginner": [
|
69 |
+
"Text Data Analysis Tool",
|
70 |
+
"Literature Review Database",
|
71 |
+
"Research Paper Summarizer",
|
72 |
+
"Study Notes Organizer",
|
73 |
+
"Data Analysis Report Generator"
|
74 |
],
|
75 |
"data_science_advanced": [
|
76 |
+
"Research Paper Recommendation System",
|
77 |
+
"Advanced NLP Analysis Tool",
|
78 |
+
"Automated Report Generator",
|
79 |
+
"Literature Review AI Assistant",
|
80 |
+
"Technical Writing Assistant"
|
81 |
],
|
82 |
"ai_specialization": [
|
83 |
+
"Text Summarization System",
|
84 |
+
"AI-Powered Document Analysis",
|
85 |
+
"Scientific Paper Classification Tool",
|
86 |
+
"Sentiment Analysis for Literature",
|
87 |
+
"Technical Writing Enhancement System"
|
88 |
],
|
89 |
"generative_ai": [
|
90 |
+
"AI Writing Assistant",
|
91 |
+
"Creative Story Generator",
|
92 |
+
"Academic Paper Generator",
|
93 |
+
"LLM-Powered Documentation Tool",
|
94 |
+
"Custom Prompt Engineering Workbook"
|
95 |
],
|
96 |
"agentic_ai": [
|
97 |
+
"AI Research Assistant Agent",
|
98 |
+
"Technical Documentation Generator",
|
99 |
+
"Writing Style Analyzer",
|
100 |
+
"Text-Based Agent Environment",
|
101 |
+
"AI-Powered Knowledge Management System"
|
102 |
]
|
103 |
},
|
104 |
"Hands-on Projects": {
|
105 |
"python_beginner": [
|
106 |
+
"Weather App with API Integration",
|
107 |
+
"To-Do List Application",
|
108 |
+
"Simple Calculator",
|
109 |
+
"Basic Web Scraper",
|
110 |
+
"File Organizer Tool"
|
111 |
],
|
112 |
"python_intermediate": [
|
113 |
+
"REST API with Flask or Django",
|
114 |
+
"Web Application with User Authentication",
|
115 |
+
"Automated Testing Framework",
|
116 |
+
"Command-Line Tool with Click",
|
117 |
+
"Desktop Application with PyQt"
|
118 |
],
|
119 |
"data_science_beginner": [
|
120 |
+
"Exploratory Data Analysis Project",
|
121 |
+
"Basic Machine Learning Model",
|
122 |
+
"Data Cleaning Pipeline",
|
123 |
+
"Simple Predictive Model",
|
124 |
+
"Dataset Visualization Tool"
|
125 |
],
|
126 |
"data_science_advanced": [
|
127 |
+
"End-to-End Machine Learning Pipeline",
|
128 |
+
"Model Deployment with Flask/FastAPI",
|
129 |
+
"Time Series Forecasting Application",
|
130 |
+
"Natural Language Processing Tool",
|
131 |
+
"Recommendation System"
|
132 |
],
|
133 |
"ai_specialization": [
|
134 |
+
"Custom Neural Network Implementation",
|
135 |
+
"Image Classification Application",
|
136 |
+
"NLP Chatbot",
|
137 |
+
"Reinforcement Learning Environment",
|
138 |
+
"Computer Vision Project"
|
139 |
],
|
140 |
"generative_ai": [
|
141 |
+
"Fine-tuned LLM Application",
|
142 |
+
"Text-to-Image Generation Tool",
|
143 |
+
"Music Generation System",
|
144 |
+
"Creative Writing AI Assistant",
|
145 |
+
"Voice Synthesis Application"
|
146 |
],
|
147 |
"agentic_ai": [
|
148 |
+
"Autonomous Task Execution Agent",
|
149 |
+
"Multi-Agent Simulation",
|
150 |
+
"Tool-Using AI Assistant",
|
151 |
+
"AI Agent for Data Analysis",
|
152 |
+
"Agent-Based Decision Support System"
|
153 |
]
|
154 |
},
|
155 |
"Video Tutorials": {
|
156 |
"python_beginner": [
|
157 |
+
"Educational Python Basics Series",
|
158 |
+
"Interactive Coding Tutorial Videos",
|
159 |
+
"Python Concept Explanation Screencast",
|
160 |
+
"Code-Along Project Videos",
|
161 |
+
"Python Tips and Tricks Channel"
|
162 |
],
|
163 |
"python_intermediate": [
|
164 |
+
"Advanced Python Features Tutorial Series",
|
165 |
+
"Framework Deep-Dive Videos",
|
166 |
+
"Performance Optimization Screencasts",
|
167 |
+
"Design Patterns in Python Series",
|
168 |
+
"Testing and Debugging Tutorials"
|
169 |
],
|
170 |
"data_science_beginner": [
|
171 |
+
"Data Analysis Walkthrough Series",
|
172 |
+
"Statistics Visualization Tutorials",
|
173 |
+
"Data Cleaning Process Videos",
|
174 |
+
"Basic Machine Learning Model Tutorials",
|
175 |
+
"Data Visualization Guide Videos"
|
176 |
],
|
177 |
"data_science_advanced": [
|
178 |
+
"Advanced ML Algorithm Explanations",
|
179 |
+
"Feature Engineering Masterclass",
|
180 |
+
"Model Optimization Techniques Series",
|
181 |
+
"ML Pipeline Development Videos",
|
182 |
+
"Model Deployment Tutorials"
|
183 |
],
|
184 |
"ai_specialization": [
|
185 |
+
"Neural Network Architecture Explanations",
|
186 |
+
"Deep Learning Framework Tutorials",
|
187 |
+
"Computer Vision Project Series",
|
188 |
+
"NLP Implementation Videos",
|
189 |
+
"AI Ethics Discussion Series"
|
190 |
],
|
191 |
"generative_ai": [
|
192 |
+
"LLM Implementation Tutorials",
|
193 |
+
"Diffusion Model Training Guide",
|
194 |
+
"Prompt Engineering Masterclass",
|
195 |
+
"Fine-tuning Walkthrough Videos",
|
196 |
+
"Generative AI Application Tutorials"
|
197 |
],
|
198 |
"agentic_ai": [
|
199 |
+
"AI Agent Development Series",
|
200 |
+
"Multi-Agent System Tutorials",
|
201 |
+
"LangChain Implementation Videos",
|
202 |
+
"Tool-Using AI Development Guide",
|
203 |
+
"Agent Communication Protocol Tutorials"
|
204 |
]
|
205 |
},
|
206 |
"Interactive Exercises": {
|
207 |
"python_beginner": [
|
208 |
+
"Python Syntax Practice Platform",
|
209 |
+
"Interactive Coding Challenge Website",
|
210 |
+
"Function Implementation Exercises",
|
211 |
+
"Python Puzzle Game",
|
212 |
+
"Basic Algorithm Challenge Series"
|
213 |
],
|
214 |
"python_intermediate": [
|
215 |
+
"Object-Oriented Programming Exercises",
|
216 |
+
"Advanced Data Structure Challenges",
|
217 |
+
"Algorithm Optimization Problems",
|
218 |
+
"Design Pattern Implementation Tasks",
|
219 |
+
"Testing Framework Exercise Platform"
|
220 |
],
|
221 |
"data_science_beginner": [
|
222 |
+
"Data Cleaning Exercise Platform",
|
223 |
+
"Statistical Analysis Practice Problems",
|
224 |
+
"Basic ML Model Implementation Challenges",
|
225 |
+
"Data Visualization Exercise Series",
|
226 |
+
"Exploratory Data Analysis Worksheets"
|
227 |
],
|
228 |
"data_science_advanced": [
|
229 |
+
"Advanced ML Algorithm Implementation",
|
230 |
+
"Feature Engineering Challenge Platform",
|
231 |
+
"Model Optimization Exercises",
|
232 |
+
"NLP Processing Tasks",
|
233 |
+
"Time Series Analysis Problems"
|
234 |
],
|
235 |
"ai_specialization": [
|
236 |
+
"Neural Network Implementation Exercises",
|
237 |
+
"Deep Learning Framework Challenges",
|
238 |
+
"Computer Vision Task Series",
|
239 |
+
"NLP Model Building Problems",
|
240 |
+
"AI Ethics Case Studies"
|
241 |
],
|
242 |
"generative_ai": [
|
243 |
+
"Prompt Engineering Practice Platform",
|
244 |
+
"LLM Fine-tuning Exercise Suite",
|
245 |
+
"Diffusion Model Parameter Tuning",
|
246 |
+
"Generative Model Evaluation Tasks",
|
247 |
+
"Text-to-Image Generation Challenges"
|
248 |
],
|
249 |
"agentic_ai": [
|
250 |
+
"Agent Development Exercise Platform",
|
251 |
+
"Multi-Agent System Building Tasks",
|
252 |
+
"Tool-Using AI Implementation Challenges",
|
253 |
+
"Reinforcement Learning Problems",
|
254 |
+
"Agent Communication Protocol Exercises"
|
255 |
]
|
256 |
},
|
257 |
"Combination": {
|
258 |
"python_beginner": [
|
259 |
+
"Multi-format Python Learning Platform",
|
260 |
+
"Integrated Code and Video Tutorial Project",
|
261 |
+
"Interactive Documentation System",
|
262 |
+
"Visual and Written Tutorial Combination",
|
263 |
+
"Exercise-Based Learning Environment"
|
264 |
],
|
265 |
"python_intermediate": [
|
266 |
+
"Full-Stack Python Development Course",
|
267 |
+
"Project-Based Learning Platform",
|
268 |
+
"Video and Interactive Exercise Combination",
|
269 |
+
"Visual Programming Environment",
|
270 |
+
"Code Review and Mentoring System"
|
271 |
],
|
272 |
"data_science_beginner": [
|
273 |
+
"Data Science Learning Path Platform",
|
274 |
+
"Interactive Data Analysis Environment",
|
275 |
+
"Video and Exercise-Based Statistics Course",
|
276 |
+
"Visual Data Science Notebook System",
|
277 |
+
"Hands-on Data Project Platform"
|
278 |
],
|
279 |
"data_science_advanced": [
|
280 |
+
"Advanced ML Project Portfolio",
|
281 |
+
"Interactive Research Implementation Platform",
|
282 |
+
"Video and Code-Based ML Framework",
|
283 |
+
"Visual ML Pipeline Development System",
|
284 |
+
"Experimental ML Environment"
|
285 |
],
|
286 |
"ai_specialization": [
|
287 |
+
"AI Research and Implementation Platform",
|
288 |
+
"Deep Learning Visual Learning System",
|
289 |
+
"Interactive Neural Network Builder",
|
290 |
+
"Video and Code-Based AI Framework",
|
291 |
+
"Hands-on AI Ethics Learning Environment"
|
292 |
],
|
293 |
"generative_ai": [
|
294 |
+
"Generative AI Development Platform",
|
295 |
+
"Interactive LLM Training Environment",
|
296 |
+
"Visual Prompt Engineering System",
|
297 |
+
"Model Fine-tuning Learning Path",
|
298 |
+
"Creative AI Implementation Framework"
|
299 |
],
|
300 |
"agentic_ai": [
|
301 |
+
"Agent Development Environment",
|
302 |
+
"Multi-Agent Simulation Platform",
|
303 |
+
"Interactive Tool-Using AI Builder",
|
304 |
+
"Video and Code-Based Agent Framework",
|
305 |
+
"Experimental Agent Testing System"
|
306 |
]
|
307 |
}
|
308 |
}
|
309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
# User session data store
|
311 |
SESSION_DATA = {}
|
312 |
|