浏览代码

fix: azure dalle generate image

master
lanvent 1年前
父节点
当前提交
3001ba9266
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      bot/chatgpt/chat_gpt_bot.py

+ 1
- 1
bot/chatgpt/chat_gpt_bot.py 查看文件

@@ -174,7 +174,7 @@ class AzureChatGPTBot(ChatGPTBot):
time.sleep(int(retry_after))
response = requests.get(operation_location, headers=headers)
status = response.json()["status"]
image_url = response.json()["result"]["contentUrl"]
image_url = response.json()["result"]["contentUrl"]
return True, image_url
except Exception as e:
logger.error("create image error: {}".format(e))


正在加载...
取消
保存