Update app.py
Browse files
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.
|
| 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:", ["
|
| 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..."):
|