importlogginglogger=logging.getLogger(__name__)fromagenticaiframework.evaluationimportEvaluationSystem# Example: Using the EvaluationSystem# ------------------------------------# This example demonstrates how to:# 1. Create an EvaluationSystem# 2. Add evaluation criteria# 3. Evaluate a sample output## Expected Output:# - Evaluation results printed to the consoleif__name__=="__main__":# Create an evaluation systemevaluator=EvaluationSystem()# Define a simple evaluation criteriondeflength_check(output):returnlen(output)>5# Add the criterion to the evaluatorevaluator.add_criterion("Length Check",length_check)# Evaluate a sample outputsample_output="Hello World"results=evaluator.evaluate(sample_output)logger.info("Evaluation Results:",results)