소스 검색

fix: do not draw when text_to_image is empty

master
zhayujie 11 달 전
부모
커밋
be0bb591e7
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      bot/linkai/link_ai_bot.py

+ 3
- 0
bot/linkai/link_ai_bot.py 파일 보기

@@ -32,6 +32,9 @@ class LinkAIBot(Bot):
if context.type == ContextType.TEXT:
return self._chat(query, context)
elif context.type == ContextType.IMAGE_CREATE:
if not conf().get("text_to_image"):
logger.warn("[LinkAI] text_to_image is not enabled, ignore the IMAGE_CREATE request")
return Reply(ReplyType.TEXT, "")
ok, res = self.create_img(query, 0)
if ok:
reply = Reply(ReplyType.IMAGE_URL, res)


Loading…
취소
저장