Spaces:
Runtime error
Runtime error
MiniMax Agent
commited on
Commit
·
39a6769
1
Parent(s):
1fa7445
Fix ImportError: Add AnalysisSynthesizer compatibility alias (1479 lines)
Browse files
backend/analysis_synthesizer.py
CHANGED
|
@@ -1473,3 +1473,7 @@ class EnhancedAnalysisSynthesizer:
|
|
| 1473 |
) -> Dict[str, Any]:
|
| 1474 |
"""Legacy method for backward compatibility"""
|
| 1475 |
return self.synthesize_research_optimized_analysis(model_results, classification, pdf_content)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1473 |
) -> Dict[str, Any]:
|
| 1474 |
"""Legacy method for backward compatibility"""
|
| 1475 |
return self.synthesize_research_optimized_analysis(model_results, classification, pdf_content)
|
| 1476 |
+
|
| 1477 |
+
|
| 1478 |
+
# Compatibility alias for backward compatibility
|
| 1479 |
+
AnalysisSynthesizer = EnhancedAnalysisSynthesizer
|