Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Navigation to different pages
|
4 |
+
st.set_page_config(page_title="AI-Driven Learning Platform", layout="wide")
|
5 |
+
|
6 |
+
st.sidebar.title("AI Learning Platform")
|
7 |
+
pages = {
|
8 |
+
"Personalized Study Paths": "study_paths",
|
9 |
+
"Coding Challenges": "coding_challenges",
|
10 |
+
"AI-Assisted Explanations": "ai_explanations"
|
11 |
+
}
|
12 |
+
|
13 |
+
# Sidebar for selecting page
|
14 |
+
selection = st.sidebar.radio("Navigate", list(pages.keys()))
|
15 |
+
|
16 |
+
if selection == "Personalized Study Paths":
|
17 |
+
from pages.study_paths import show_study_paths
|
18 |
+
show_study_paths()
|
19 |
+
elif selection == "Coding Challenges":
|
20 |
+
from pages.coding_challenges import show_coding_challenges
|
21 |
+
show_coding_challenges()
|
22 |
+
elif selection == "AI-Assisted Explanations":
|
23 |
+
from pages.ai_explanations import show_ai_explanations
|
24 |
+
show_ai_explanations()
|