(f"Unsupported format.") return # Collect all images from attachments and URLs image_data_list = [] # Handle the primary image parameter if isinstance(image, discord.Attachment): if image.content_type.startswith('image/'): image_data_list.append(await image.read()) elif image and is_...