I have seen examples in Google's DialogFlow where "Cards" are output and an image is shown to the user. I am using Python as a backend, with ngrok hosting a local website to connect the webhook to Google's fulfillment. However, these cards require an image's URL to show the image after an intent is activated. I am using matplotlib to generate a plot, which is saved locally. I want this image to be displayed after an intent is achieved.
Would it be better to immediately save this plot online somehow, or to send it to ngrok's server for me to use in fulfillment? Or is it possible to just upload the local file?