saherPervaiz commited on
Commit
60f3efe
Β·
verified Β·
1 Parent(s): 769b468

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def match_jd(jd_text):
45
  matched_names = [cv_names[i] for i in top_k_indices]
46
  matched_texts = [cv_texts[i] for i in top_k_indices]
47
 
48
- summary = summarize_match(jd_text, matched_names) # βœ… fixed this line
49
  return f"βœ… Top Matches:\n{matched_names}\n\nπŸ“ Summary:\n{summary}"
50
 
51
  except Exception as e:
 
45
  matched_names = [cv_names[i] for i in top_k_indices]
46
  matched_texts = [cv_texts[i] for i in top_k_indices]
47
 
48
+ summary = summarize_match(jd_text, matched_names) # βœ… this is the fix!
49
  return f"βœ… Top Matches:\n{matched_names}\n\nπŸ“ Summary:\n{summary}"
50
 
51
  except Exception as e: