Spaces:
Paused
Paused
| """ | |
| Evaluation module for AI Executive System. | |
| This module handles: | |
| - Voice authenticity metrics | |
| - Factual accuracy verification | |
| - Human evaluation set generation | |
| """ | |
| from .voice_metrics import VoiceMetrics | |
| from .factual_accuracy import FactualAccuracyChecker | |
| from .human_eval_generator import HumanEvalGenerator | |
| __all__ = [ | |
| "VoiceMetrics", | |
| "FactualAccuracyChecker", | |
| "HumanEvalGenerator", | |
| ] | |