i have added dalle2 in telegram bot. on request, it issues other links, and issues pictures from the Internet. here is the code: def openai_Image(prompt):
response = openai.Image.create(
prompt=prompt,
n=1,
size="256x256",
)
image_url = response['data'][0]['url']
def image_command(message: types.Message):
bot.send_message(message.chat.id, ['image_url'])
Help pls!