Update app.py
Browse files
app.py
CHANGED
|
@@ -8,7 +8,7 @@ st.set_page_config(initial_sidebar_state="collapsed")
|
|
| 8 |
|
| 9 |
# --- Login Page ---
|
| 10 |
def login_page():
|
| 11 |
-
st.title("
|
| 12 |
|
| 13 |
|
| 14 |
api_options = ["Gemini API", "OpenAI API"]
|
|
@@ -42,8 +42,7 @@ def login_page():
|
|
| 42 |
|
| 43 |
# --- Quiz Application ---
|
| 44 |
def quiz_app():
|
| 45 |
-
st.title("
|
| 46 |
-
st.markdown(f"Powered by {st.session_state.selected_api}")
|
| 47 |
|
| 48 |
# Initialize session state for quiz data and progress (if not already initialized during login)
|
| 49 |
if 'quiz_data' not in st.session_state:
|
|
|
|
| 8 |
|
| 9 |
# --- Login Page ---
|
| 10 |
def login_page():
|
| 11 |
+
# st.title("API Selection")
|
| 12 |
|
| 13 |
|
| 14 |
api_options = ["Gemini API", "OpenAI API"]
|
|
|
|
| 42 |
|
| 43 |
# --- Quiz Application ---
|
| 44 |
def quiz_app():
|
| 45 |
+
st.title("QuizLM 🧠")
|
|
|
|
| 46 |
|
| 47 |
# Initialize session state for quiz data and progress (if not already initialized during login)
|
| 48 |
if 'quiz_data' not in st.session_state:
|