Spaces:
Sleeping
Sleeping
Update utils/suggestions.py
Browse files- utils/suggestions.py +1 -1
utils/suggestions.py
CHANGED
|
@@ -63,7 +63,7 @@ def get_career_advice(parsed_text):
|
|
| 63 |
matched = match_field(field, df)
|
| 64 |
return matched['suggestion'].tolist()
|
| 65 |
|
| 66 |
-
|
| 67 |
df = load_csv("jobs.csv")
|
| 68 |
field = identify_field(cv_text)
|
| 69 |
matched = match_field(field, df)
|
|
|
|
| 63 |
matched = match_field(field, df)
|
| 64 |
return matched['suggestion'].tolist()
|
| 65 |
|
| 66 |
+
def get_job_listings(cv_text):
|
| 67 |
df = load_csv("jobs.csv")
|
| 68 |
field = identify_field(cv_text)
|
| 69 |
matched = match_field(field, df)
|