Added citation and quality metrics to the content editor.
This commit is contained in:
22
backend/services/quality/__init__.py
Normal file
22
backend/services/quality/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""
|
||||
Quality Services Module for ALwrity
|
||||
|
||||
This module provides content quality assessment and analysis capabilities,
|
||||
ensuring generated content meets enterprise standards and quality requirements.
|
||||
|
||||
Available Services:
|
||||
- ContentQualityAnalyzer: Comprehensive content quality assessment
|
||||
- Quality metrics and scoring systems
|
||||
- Improvement recommendations and tracking
|
||||
- Content comparison and analysis
|
||||
|
||||
Author: ALwrity Team
|
||||
Version: 1.0
|
||||
Last Updated: January 2025
|
||||
"""
|
||||
|
||||
from services.quality.content_analyzer import ContentQualityAnalyzer
|
||||
|
||||
__all__ = [
|
||||
"ContentQualityAnalyzer"
|
||||
]
|
||||
Reference in New Issue
Block a user