Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from function import GetLLMResponse
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
|
| 6 |
|
|
@@ -16,11 +20,7 @@ def main():
|
|
| 16 |
model = st.radio("Model", [ "Gemini","Open AI",])
|
| 17 |
st.write("Selected option:", model)
|
| 18 |
|
| 19 |
-
|
| 20 |
-
st.set_page_config(page_title="Generate Math Quizzes",
|
| 21 |
-
page_icon="🧮",
|
| 22 |
-
layout="centered",
|
| 23 |
-
initial_sidebar_state="collapsed")
|
| 24 |
|
| 25 |
# Header and description
|
| 26 |
st.title("Generate Math Quizzes 🧮")
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from function import GetLLMResponse
|
| 3 |
+
# Page configuration
|
| 4 |
+
st.set_page_config(page_title="Generate Math Quizzes",
|
| 5 |
+
page_icon="🧮",
|
| 6 |
+
layout="centered",
|
| 7 |
+
initial_sidebar_state="collapsed")
|
| 8 |
|
| 9 |
|
| 10 |
|
|
|
|
| 20 |
model = st.radio("Model", [ "Gemini","Open AI",])
|
| 21 |
st.write("Selected option:", model)
|
| 22 |
|
| 23 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
# Header and description
|
| 26 |
st.title("Generate Math Quizzes 🧮")
|