Danial7 commited on
Commit
934a3a3
·
verified ·
1 Parent(s): f102421

Update utils/suggestions.py

Browse files
Files changed (1) hide show
  1. utils/suggestions.py +10 -0
utils/suggestions.py CHANGED
@@ -32,3 +32,13 @@ List the top 5 certifications with short descriptions.
32
  """
33
  response = call_llm(prompt)
34
  return response.strip()
 
 
 
 
 
 
 
 
 
 
 
32
  """
33
  response = call_llm(prompt)
34
  return response.strip()
35
+
36
+ def get_higher_education_suggestions(cv_text):
37
+ prompt = f"""You are a career coach. Based on the following CV, suggest 3 higher education degrees or programs that would significantly improve the candidate's job prospects internationally. Include degree names and reasons.
38
+
39
+ CV:
40
+ {cv_text}
41
+ """
42
+ response = call_llm(prompt)
43
+ return response.strip()
44
+