Image from custom action

How can we send an image as a response from custom action.

@Chaitanya Please check this thread - (Solved) [CORE/SDK] Sending Pictures from Custom Action (utter_response, utter_attachment not working)

Essentially, you can create a template with the URL of image and utter the template using dispatcher.utter_template function.

image = ‘https://i.imgur.com/nGF1K8f.jpg’ dispatcher.utter_message(text = “Here is the image that you have created.”, image = image)

use this it will show the picture