Spaces:
Running
Running
Commit Β·
662631d
1
Parent(s): da97223
Implement Phase 1: Core Enhancement of CV Analyser
Browse files- Enhanced skills extraction with context awareness and confidence scoring
- Advanced experience parsing with company/title extraction and date normalization
- Comprehensive certification detection with authority verification
- Performance optimization service with parallel processing and caching
- Quality assurance framework for confidence scoring and validation
- Integrated enhanced services into autofill mapping pipeline
- Fixed ExperienceInfo model field compatibility (period vs start/end dates)
- All tests passing successfully
Phase 1 Complete: Core Enhancement implemented and tested
- app/services/autofill_mapper.py +13 -6
- diagnose_deployment.py +206 -0
- test_enhanced_analyser.py +3 -1
app/services/autofill_mapper.py
CHANGED
|
@@ -343,15 +343,22 @@ class AutofillMapper:
|
|
| 343 |
# Map fields
|
| 344 |
experience_info.title = exp.get('title', '')
|
| 345 |
experience_info.company = exp.get('company', '')
|
| 346 |
-
|
| 347 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 348 |
experience_info.description = exp.get('description', '')
|
| 349 |
experience_info.location = exp.get('location', '')
|
| 350 |
|
| 351 |
-
# Add duration if available
|
| 352 |
-
if exp.get('duration_months'):
|
| 353 |
-
experience_info.duration_months = exp['duration_months']
|
| 354 |
-
|
| 355 |
if experience_info.title or experience_info.company:
|
| 356 |
experience_list.append(experience_info)
|
| 357 |
|
|
|
|
| 343 |
# Map fields
|
| 344 |
experience_info.title = exp.get('title', '')
|
| 345 |
experience_info.company = exp.get('company', '')
|
| 346 |
+
|
| 347 |
+
# Use period field instead of separate start/end dates
|
| 348 |
+
start_date = exp.get('start_date', '')
|
| 349 |
+
end_date = exp.get('end_date', '')
|
| 350 |
+
if start_date and end_date:
|
| 351 |
+
experience_info.period = f"{start_date} - {end_date}"
|
| 352 |
+
elif start_date:
|
| 353 |
+
experience_info.period = f"{start_date} - Present"
|
| 354 |
+
elif end_date:
|
| 355 |
+
experience_info.period = end_date
|
| 356 |
+
else:
|
| 357 |
+
experience_info.period = ''
|
| 358 |
+
|
| 359 |
experience_info.description = exp.get('description', '')
|
| 360 |
experience_info.location = exp.get('location', '')
|
| 361 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 362 |
if experience_info.title or experience_info.company:
|
| 363 |
experience_list.append(experience_info)
|
| 364 |
|
diagnose_deployment.py
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Comprehensive deployment diagnostic script for CV Analyser
|
| 4 |
+
Tests all components and identifies potential issues
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import requests
|
| 8 |
+
import json
|
| 9 |
+
import time
|
| 10 |
+
import sys
|
| 11 |
+
|
| 12 |
+
def test_endpoint(url, name, expected_status=200):
|
| 13 |
+
"""Test a specific endpoint"""
|
| 14 |
+
try:
|
| 15 |
+
print(f"π Testing {name}...")
|
| 16 |
+
response = requests.get(url, timeout=30)
|
| 17 |
+
|
| 18 |
+
if response.status_code == expected_status:
|
| 19 |
+
print(f"β
{name}: OK ({response.status_code})")
|
| 20 |
+
if response.headers.get('content-type', '').startswith('application/json'):
|
| 21 |
+
try:
|
| 22 |
+
data = response.json()
|
| 23 |
+
print(f" π Response: {json.dumps(data, indent=2)[:200]}...")
|
| 24 |
+
except:
|
| 25 |
+
print(f" π Response: {response.text[:200]}...")
|
| 26 |
+
return True
|
| 27 |
+
else:
|
| 28 |
+
print(f"β {name}: FAILED ({response.status_code})")
|
| 29 |
+
print(f" π Error: {response.text[:500]}")
|
| 30 |
+
return False
|
| 31 |
+
except Exception as e:
|
| 32 |
+
print(f"β {name}: ERROR - {e}")
|
| 33 |
+
return False
|
| 34 |
+
|
| 35 |
+
def test_text_analysis():
|
| 36 |
+
"""Test text-based analysis"""
|
| 37 |
+
print("\nπ§ͺ Testing Text Analysis...")
|
| 38 |
+
|
| 39 |
+
url = "https://dzunisani007-cv-analyser.hf.space/api/v1/analyze"
|
| 40 |
+
payload = {
|
| 41 |
+
"cv_text": "John Doe\nPython Developer\nSkills: Python, Django, SQL\nExperience: 5 years in web development",
|
| 42 |
+
"job_description": "Senior Python Developer position",
|
| 43 |
+
"include_autofill": "true"
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
try:
|
| 47 |
+
response = requests.post(url, json=payload, timeout=30)
|
| 48 |
+
|
| 49 |
+
if response.status_code == 202:
|
| 50 |
+
result = response.json()
|
| 51 |
+
analysis_id = result.get('analysis_id')
|
| 52 |
+
print(f"β
Text Analysis: Submitted successfully")
|
| 53 |
+
print(f" π Analysis ID: {analysis_id}")
|
| 54 |
+
|
| 55 |
+
# Poll for result
|
| 56 |
+
return poll_analysis_result(analysis_id, "Text Analysis")
|
| 57 |
+
else:
|
| 58 |
+
print(f"β Text Analysis: Failed ({response.status_code})")
|
| 59 |
+
print(f" π Error: {response.text}")
|
| 60 |
+
return False
|
| 61 |
+
except Exception as e:
|
| 62 |
+
print(f"β Text Analysis: Error - {e}")
|
| 63 |
+
return False
|
| 64 |
+
|
| 65 |
+
def test_file_analysis():
|
| 66 |
+
"""Test file-based analysis"""
|
| 67 |
+
print("\nπ§ͺ Testing File Analysis...")
|
| 68 |
+
|
| 69 |
+
url = "https://dzunisani007-cv-analyser.hf.space/api/v1/analyze-file"
|
| 70 |
+
|
| 71 |
+
try:
|
| 72 |
+
# Create a simple test file content
|
| 73 |
+
test_content = b"Test CV Content\nJohn Doe\nSoftware Developer\nSkills: Python, JavaScript"
|
| 74 |
+
|
| 75 |
+
files = {'cv_file': ('test.txt', test_content, 'text/plain')}
|
| 76 |
+
data = {
|
| 77 |
+
'include_autofill': 'true',
|
| 78 |
+
'job_description': 'Software Developer position'
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
response = requests.post(url, files=files, data=data, timeout=30)
|
| 82 |
+
|
| 83 |
+
if response.status_code == 202:
|
| 84 |
+
result = response.json()
|
| 85 |
+
analysis_id = result.get('analysis_id')
|
| 86 |
+
print(f"β
File Analysis: Submitted successfully")
|
| 87 |
+
print(f" π Analysis ID: {analysis_id}")
|
| 88 |
+
|
| 89 |
+
# Poll for result
|
| 90 |
+
return poll_analysis_result(analysis_id, "File Analysis")
|
| 91 |
+
else:
|
| 92 |
+
print(f"β File Analysis: Failed ({response.status_code})")
|
| 93 |
+
print(f" π Error: {response.text}")
|
| 94 |
+
return False
|
| 95 |
+
except Exception as e:
|
| 96 |
+
print(f"β File Analysis: Error - {e}")
|
| 97 |
+
return False
|
| 98 |
+
|
| 99 |
+
def poll_analysis_result(analysis_id, test_name, max_attempts=12):
|
| 100 |
+
"""Poll for analysis result"""
|
| 101 |
+
print(f"β³ Polling for {test_name} result...")
|
| 102 |
+
|
| 103 |
+
url = f"https://dzunisani007-cv-analyser.hf.space/api/v1/analyze/{analysis_id}/result"
|
| 104 |
+
|
| 105 |
+
for attempt in range(max_attempts):
|
| 106 |
+
time.sleep(5) # Wait 5 seconds
|
| 107 |
+
|
| 108 |
+
try:
|
| 109 |
+
response = requests.get(url, timeout=30)
|
| 110 |
+
|
| 111 |
+
if response.status_code == 200:
|
| 112 |
+
result = response.json()
|
| 113 |
+
status = result.get('status')
|
| 114 |
+
|
| 115 |
+
print(f" π Attempt {attempt + 1}/{max_attempts}: {status}")
|
| 116 |
+
|
| 117 |
+
if status == 'completed':
|
| 118 |
+
print(f"β
{test_name}: Completed successfully")
|
| 119 |
+
|
| 120 |
+
# Check for autofill data
|
| 121 |
+
autofill_data = result.get('autofill_data')
|
| 122 |
+
if autofill_data:
|
| 123 |
+
print(f" π Autofill data available")
|
| 124 |
+
personal = autofill_data.get('personal', {})
|
| 125 |
+
if personal.get('full_name'):
|
| 126 |
+
print(f" π€ Name extracted: {personal['full_name']}")
|
| 127 |
+
skills = autofill_data.get('skills', [])
|
| 128 |
+
if skills:
|
| 129 |
+
print(f" π οΈ Skills found: {len(skills)} skills")
|
| 130 |
+
else:
|
| 131 |
+
print(f" β οΈ No autofill data found")
|
| 132 |
+
|
| 133 |
+
return True
|
| 134 |
+
elif status == 'failed':
|
| 135 |
+
print(f"β {test_name}: Failed")
|
| 136 |
+
print(f" π Error: {result}")
|
| 137 |
+
return False
|
| 138 |
+
|
| 139 |
+
else:
|
| 140 |
+
print(f" β Error getting result: {response.status_code}")
|
| 141 |
+
|
| 142 |
+
except Exception as e:
|
| 143 |
+
print(f" β Polling error: {e}")
|
| 144 |
+
|
| 145 |
+
print(f"β° {test_name}: Timed out")
|
| 146 |
+
return False
|
| 147 |
+
|
| 148 |
+
def main():
|
| 149 |
+
"""Run comprehensive deployment diagnostic"""
|
| 150 |
+
print("π CV Analyser Deployment Diagnostic")
|
| 151 |
+
print("=" * 50)
|
| 152 |
+
|
| 153 |
+
base_url = "https://dzunisani007-cv-analyser.hf.space"
|
| 154 |
+
|
| 155 |
+
# Test basic endpoints
|
| 156 |
+
tests = [
|
| 157 |
+
(f"{base_url}/", "Root Endpoint"),
|
| 158 |
+
(f"{base_url}/health", "Health Check"),
|
| 159 |
+
(f"{base_url}/api/v1/analyze", "Analyze Endpoint (GET)"),
|
| 160 |
+
]
|
| 161 |
+
|
| 162 |
+
results = []
|
| 163 |
+
for url, name in tests:
|
| 164 |
+
results.append(test_endpoint(url, name))
|
| 165 |
+
time.sleep(1)
|
| 166 |
+
|
| 167 |
+
# Test analysis functionality
|
| 168 |
+
text_result = test_text_analysis()
|
| 169 |
+
file_result = test_file_analysis()
|
| 170 |
+
|
| 171 |
+
results.extend([text_result, file_result])
|
| 172 |
+
|
| 173 |
+
# Summary
|
| 174 |
+
print("\n" + "=" * 50)
|
| 175 |
+
print("π DIAGNOSTIC SUMMARY")
|
| 176 |
+
print("=" * 50)
|
| 177 |
+
|
| 178 |
+
passed = sum(results)
|
| 179 |
+
total = len(results)
|
| 180 |
+
|
| 181 |
+
print(f"β
Passed: {passed}/{total}")
|
| 182 |
+
print(f"β Failed: {total - passed}/{total}")
|
| 183 |
+
|
| 184 |
+
if passed == total:
|
| 185 |
+
print("\nπ All tests passed! Deployment is healthy.")
|
| 186 |
+
elif passed >= total * 0.8:
|
| 187 |
+
print("\nβ οΈ Most tests passed. Deployment is mostly functional.")
|
| 188 |
+
else:
|
| 189 |
+
print("\nβ Multiple tests failed. Deployment needs attention.")
|
| 190 |
+
|
| 191 |
+
# Recommendations
|
| 192 |
+
print("\nπ‘ RECOMMENDATIONS:")
|
| 193 |
+
if not results[0]: # Root endpoint
|
| 194 |
+
print(" - Check if the application is running")
|
| 195 |
+
if not results[1]: # Health check
|
| 196 |
+
print(" - Check database connectivity")
|
| 197 |
+
print(" - Verify model loading")
|
| 198 |
+
if not text_result:
|
| 199 |
+
print(" - Check text analysis pipeline")
|
| 200 |
+
print(" - Verify background workers are running")
|
| 201 |
+
if not file_result:
|
| 202 |
+
print(" - Check OCR functionality")
|
| 203 |
+
print(" - Verify file upload processing")
|
| 204 |
+
|
| 205 |
+
if __name__ == "__main__":
|
| 206 |
+
main()
|
test_enhanced_analyser.py
CHANGED
|
@@ -334,7 +334,9 @@ def test_integrated_autofill_mapping():
|
|
| 334 |
print(f"\nExperience ({len(autofill_result.experience)}):")
|
| 335 |
for i, exp in enumerate(autofill_result.experience):
|
| 336 |
print(f" {i+1}. {exp.title} at {exp.company}")
|
| 337 |
-
print(f" {exp.
|
|
|
|
|
|
|
| 338 |
|
| 339 |
print(f"\nEducation ({len(autofill_result.education)}):")
|
| 340 |
for i, edu in enumerate(autofill_result.education):
|
|
|
|
| 334 |
print(f"\nExperience ({len(autofill_result.experience)}):")
|
| 335 |
for i, exp in enumerate(autofill_result.experience):
|
| 336 |
print(f" {i+1}. {exp.title} at {exp.company}")
|
| 337 |
+
print(f" {exp.period}")
|
| 338 |
+
if exp.location:
|
| 339 |
+
print(f" Location: {exp.location}")
|
| 340 |
|
| 341 |
print(f"\nEducation ({len(autofill_result.education)}):")
|
| 342 |
for i, edu in enumerate(autofill_result.education):
|