Spaces:
Runtime error
Runtime error
Update round1.py
Browse files
round1.py
CHANGED
|
@@ -101,6 +101,10 @@ def app():
|
|
| 101 |
# Generate and display questions
|
| 102 |
if st.button("Generate Interview Questions"):
|
| 103 |
questions_text = generate_questions(company_name, role_applied_for, job_description, interview_type, focus_areas)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
questions_list = questions_text.split('\n') # Splitting the generated text into a list of questions
|
| 105 |
|
| 106 |
# Initialize a place to store responses
|
|
|
|
| 101 |
# Generate and display questions
|
| 102 |
if st.button("Generate Interview Questions"):
|
| 103 |
questions_text = generate_questions(company_name, role_applied_for, job_description, interview_type, focus_areas)
|
| 104 |
+
st.write(questions_text)
|
| 105 |
+
|
| 106 |
+
|
| 107 |
+
st.write("## Generated Interview Questions")
|
| 108 |
questions_list = questions_text.split('\n') # Splitting the generated text into a list of questions
|
| 109 |
|
| 110 |
# Initialize a place to store responses
|