rashid01 commited on
Commit
a274d53
·
verified ·
1 Parent(s): 310e837

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -281,10 +281,10 @@ if nav_option == "Generate Questions":
281
  st.header("📝 Generate Interview Questions")
282
 
283
  model_choice = st.selectbox("Choose Model:", ["OpenAI", "Gemini"])
284
- role = st.text_input("Role", placeholder="e.g. Software Engineer")
285
  question_type = st.selectbox("Question Type:", ["Behavioral", "Technical", "Situational", "Case Study", "Problem Solving"])
286
  num_questions = st.number_input("Number of Questions:", min_value=1, max_value=20, value=5)
287
- difficulty = st.selectbox("Difficulty Level:", ["Easy", "Medium", "Hard"])
288
 
289
  if st.button("Generate Questions", key="generate_questions"):
290
  with st.spinner("Generating questions..."):
 
281
  st.header("📝 Generate Interview Questions")
282
 
283
  model_choice = st.selectbox("Choose Model:", ["OpenAI", "Gemini"])
284
+ role = st.selectbox("Role", ["Software Engineer", "Data Scientist", "ML Engineer", "GenAI Specialist"])
285
  question_type = st.selectbox("Question Type:", ["Behavioral", "Technical", "Situational", "Case Study", "Problem Solving"])
286
  num_questions = st.number_input("Number of Questions:", min_value=1, max_value=20, value=5)
287
+ difficulty = st.selectbox("Difficulty Level:", ["Basic", "Medium", "Complex"])
288
 
289
  if st.button("Generate Questions", key="generate_questions"):
290
  with st.spinner("Generating questions..."):