Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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]
|
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 |
|