Spaces:
Sleeping
Sleeping
Update cv_analyzer.py
Browse files- cv_analyzer.py +1 -1
cv_analyzer.py
CHANGED
@@ -10,13 +10,13 @@ from cv_prompt import (
|
|
10 |
from openai_utils import get_ai_response
|
11 |
from langchain.output_parsers import PydanticOutputParser
|
12 |
from spelling_grammar_checker import evaluate_cv_text
|
13 |
-
from personal_information import analyze_personal_info
|
14 |
from cv_quality import CV
|
15 |
|
16 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
17 |
|
18 |
def analyze_cv(file_path):
|
19 |
try:
|
|
|
20 |
# Extract text from CV
|
21 |
cv = CV(file_path)
|
22 |
text = cv.get_cv_text()
|
|
|
10 |
from openai_utils import get_ai_response
|
11 |
from langchain.output_parsers import PydanticOutputParser
|
12 |
from spelling_grammar_checker import evaluate_cv_text
|
|
|
13 |
from cv_quality import CV
|
14 |
|
15 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
16 |
|
17 |
def analyze_cv(file_path):
|
18 |
try:
|
19 |
+
from personal_information import analyze_personal_info
|
20 |
# Extract text from CV
|
21 |
cv = CV(file_path)
|
22 |
text = cv.get_cv_text()
|