소스 검색

fix: azure dalle generate image

lanvent 2 년 전
부모
커밋
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))