Commit
·
075b6d0
1
Parent(s):
775686f
updated
Browse files
app.py
CHANGED
@@ -1011,7 +1011,7 @@ def interview_loop(max_questions, timeout_seconds=300, collection_name="intervie
|
|
1011 |
difficulty_adjustment=difficulty_adjustment
|
1012 |
)
|
1013 |
question = groq_llm.predict(prompt)
|
1014 |
-
question_eval = eval_question_quality(question, job_role, seniority
|
1015 |
|
1016 |
conversation_history.append({'role': "Interviewer", "content": question})
|
1017 |
print(f"Interviewer: Q{i + 1} : {question}")
|
|
|
1011 |
difficulty_adjustment=difficulty_adjustment
|
1012 |
)
|
1013 |
question = groq_llm.predict(prompt)
|
1014 |
+
question_eval = eval_question_quality(question, job_role, seniority)
|
1015 |
|
1016 |
conversation_history.append({'role': "Interviewer", "content": question})
|
1017 |
print(f"Interviewer: Q{i + 1} : {question}")
|