A work around could be to use the model name feature.
model = tf.keras.models.Sequential([tf.keras.layers.Dense(10,activation='relu',input_shape=(100,))],name='This model trained with 1000 dogs/cats images')
I think the limit on the name string is 1024 characters...