saherPervaiz commited on
Commit
51f6b7b
·
verified ·
1 Parent(s): 0ab97c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ def match_jd(jd_text):
39
  indices = search_similar_cvs(jd_vector, faiss_index, k=3)
40
 
41
  matched = [cv_names[i] for i in indices]
42
- texts = [cv_texts[i][:400] for i in indices]
43
 
44
  summary = summarize_match(jd_text, matched, texts)
45
 
 
39
  indices = search_similar_cvs(jd_vector, faiss_index, k=3)
40
 
41
  matched = [cv_names[i] for i in indices]
42
+ texts = [cv_texts[i] for i in indices]
43
 
44
  summary = summarize_match(jd_text, matched, texts)
45