소스 검색

feat: auto append a question mark when there is no ending punctuation

master
zhayujie 2 년 전
부모
커밋
ffec4df563
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +11
    -0
      bot/openai/open_ai_bot.py

+ 11
- 0
bot/openai/open_ai_bot.py 파일 보기

@@ -12,6 +12,10 @@ class OpenAIBot(Bot):
openai.api_key = conf().get('open_ai_api_key')

def reply(self, query, context=None):
# auto append question mark
query = self.append_question_mark(query)

# acquire reply content
if not context or not context.get('type') or context.get('type') == 'TEXT':
return self.reply_text(query)
elif context.get('type', None) == 'IMAGE_CREATE':
@@ -82,3 +86,10 @@ class OpenAIBot(Bot):
logger.exception(e)
return None
return image_url

def append_question_mark(self, query):
end_symbols = [".", "。", "?", "?", "!", "!"]
for symbol in end_symbols:
if query.endswith(symbol):
return query
return query + "?"

Loading…
취소
저장