Spaces:
Sleeping
Sleeping
Update app.py
#1
by
nsgupta1
- opened
app.py
CHANGED
@@ -119,7 +119,7 @@ with st.sidebar.form(key="input_form"):
|
|
119 |
st.markdown("## Generate a New Question")
|
120 |
company = st.text_input("Company", value="Google") # Default value: Google
|
121 |
difficulty = st.selectbox("Difficulty", ["Easy", "Medium", "Hard"], index=1) # Default: Medium
|
122 |
-
topic = st.text_input("Topic", value="
|
123 |
generate_button = st.form_submit_button(label="Generate")
|
124 |
|
125 |
if generate_button:
|
|
|
119 |
st.markdown("## Generate a New Question")
|
120 |
company = st.text_input("Company", value="Google") # Default value: Google
|
121 |
difficulty = st.selectbox("Difficulty", ["Easy", "Medium", "Hard"], index=1) # Default: Medium
|
122 |
+
topic = st.text_input("Topic", value="Binary Search") # Default: Binary Search
|
123 |
generate_button = st.form_submit_button(label="Generate")
|
124 |
|
125 |
if generate_button:
|