src/exporters/coreml/config.py [870:876]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                input_ids_name = "decoder_input_ids"
                attention_mask_name = "decoder_attention_mask"
            else:
                input_ids_name = "input_ids"
                attention_mask_name = "attention_mask"

            input_desc = input_descs[input_ids_name]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/exporters/coreml/convert.py [130:136]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            input_ids_name = "decoder_input_ids"
            attention_mask_name = "decoder_attention_mask"
        else:
            input_ids_name = "input_ids"
            attention_mask_name = "attention_mask"

        input_desc = input_descs[input_ids_name]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



