Spaces:
Sleeping
Sleeping
Update resume_tools.py
Browse files- resume_tools.py +2 -0
resume_tools.py
CHANGED
@@ -3,6 +3,7 @@ from pypdf import PdfReader
|
|
3 |
import google.generativeai as genai
|
4 |
import os
|
5 |
from typing import List
|
|
|
6 |
from utils import CURRENT_RESUME_LATEX
|
7 |
import os
|
8 |
import re
|
@@ -44,6 +45,7 @@ def header_details(name: str, mobile_number: str, email_id: str, linkedin_profil
|
|
44 |
|
45 |
"""
|
46 |
global CURRENT_RESUME_LATEX
|
|
|
47 |
CURRENT_RESUME_LATEX += header_latex
|
48 |
response_message = "Now call professional_summary_tool"
|
49 |
return response_message
|
|
|
3 |
import google.generativeai as genai
|
4 |
import os
|
5 |
from typing import List
|
6 |
+
from utils import CURRENT_RESUME_LATEX as LATEX_TEMPLATE
|
7 |
from utils import CURRENT_RESUME_LATEX
|
8 |
import os
|
9 |
import re
|
|
|
45 |
|
46 |
"""
|
47 |
global CURRENT_RESUME_LATEX
|
48 |
+
CURRENT_RESUME_LATEX = LATEX_TEMPLATE
|
49 |
CURRENT_RESUME_LATEX += header_latex
|
50 |
response_message = "Now call professional_summary_tool"
|
51 |
return response_message
|