#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1128
Task: cử

</think>

Write a Python function that calculates the average of a list of emotional peak values, where each peak is represented as a float, and returns the result rounded to two decimal places.
Generated: 2026-02-12T21:13:50.821080
"""

def calculate_average_peak(peaks):
    average = sum(peaks) / len(peaks)
    return round(average, 2)

if __name__ == '__main__':
    test_peaks = [8.5, 7.2, 9.8, 6.4, 8.9]
    result = calculate_average_peak(test_peaks)
    print(f"The average emotional peak is: {result}")