Update process_interview.py
Browse files- process_interview.py +1 -1
process_interview.py
CHANGED
|
@@ -803,7 +803,7 @@ def create_company_pdf_report(analysis_data: Dict, output_path: str, gemini_repo
|
|
| 803 |
else:
|
| 804 |
story.append(Paragraph("<b>HR Verdict:</b> Limited fit, significant improvement required.", body_text))
|
| 805 |
story.append(Spacer(1, 0.2*inch))
|
| 806 |
-
participants = sorted([p for u in set(u['speaker'] for u in analysis_data['transcript'] if u['speaker'] != 'Unknown'])
|
| 807 |
participants_str = ', '.join(participants)
|
| 808 |
table_data = [
|
| 809 |
['Metric', 'Value'],
|
|
|
|
| 803 |
else:
|
| 804 |
story.append(Paragraph("<b>HR Verdict:</b> Limited fit, significant improvement required.", body_text))
|
| 805 |
story.append(Spacer(1, 0.2*inch))
|
| 806 |
+
participants = sorted([p for u in set(u['speaker'] for u in analysis_data['transcript'] if u['speaker'] != ['Unknown'])
|
| 807 |
participants_str = ', '.join(participants)
|
| 808 |
table_data = [
|
| 809 |
['Metric', 'Value'],
|