def extract_key_pair(data):
    """
    Extracts key pair from a list of tuples.

    Args:
        data (list): List of tuples containing version, value, and other metrics.

    Returns:
        tuple: A tuple containing the version with the highest value.
    """
    return max(data, key=lambda x: x[1])