23 lines
579 B
Python
23 lines
579 B
Python
"""
|
|
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"
|
|
]
|