#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1300
Task: \boxed{Write a Python function that calculates the average of the emotional peak values from the given broadcast data and returns the result rounded to two decimal places.}</think>

Write a Python fun
Generated: 2026-02-13T17:53:26.377643
"""

def calculate_average_emotional_peak(broadcast_data):
    total_peaks = sum(broadcast_data)
    average_peak = total_peaks / len(broadcast_data)
    return round(average_peak, 2)

if __name__ == '__main__':
    # Example broadcast data with emotional peak values
    broadcast_data = [4.5, 6.2, 3.8, 5.7, 7.1]
    average = calculate_average_emotional_peak(broadcast_data)
    print(f"Average emotional peak: {average}")