Spaces:
Sleeping
Sleeping
Update src/services/cv_service.py
Browse files
src/services/cv_service.py
CHANGED
|
@@ -12,7 +12,6 @@ class CVParsingService:
|
|
| 12 |
self.models = models
|
| 13 |
self.orchestrator = CVAgentOrchestrator(models.get("llm"))
|
| 14 |
self.scoring_agent = SimpleScoringAgent()
|
| 15 |
-
self.fallback_extractor = FallbackExtractor()
|
| 16 |
def parse_cv(self, pdf_path: str) -> Dict[str, Any]:
|
| 17 |
cv_text = load_pdf(pdf_path)
|
| 18 |
if not cv_text or not cv_text.strip():
|
|
|
|
| 12 |
self.models = models
|
| 13 |
self.orchestrator = CVAgentOrchestrator(models.get("llm"))
|
| 14 |
self.scoring_agent = SimpleScoringAgent()
|
|
|
|
| 15 |
def parse_cv(self, pdf_path: str) -> Dict[str, Any]:
|
| 16 |
cv_text = load_pdf(pdf_path)
|
| 17 |
if not cv_text or not cv_text.strip():
|