rishabhpr nsgupta1 commited on
Commit
2f09479
·
verified ·
1 Parent(s): 66d9c35

Update app.py (#1)

Browse files

- Update app.py (b32d19250ed98a9bd7d42780a28567cd3e1c04f7)


Co-authored-by: Neha Gupta <[email protected]>

Files changed (1) hide show
  1. app.py +1 -1
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="Backtracking") # Default: Backtracking
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: