소스 검색

docs: update README.md

master
zhayujie 1 년 전
부모
커밋
44e5979a03
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      bot/chatgpt/chat_gpt_bot.py
  2. +1
    -0
      config-template.json

+ 3
- 1
bot/chatgpt/chat_gpt_bot.py 파일 보기

@@ -16,7 +16,9 @@ else:
class ChatGPTBot(Bot):
def __init__(self):
openai.api_key = conf().get('open_ai_api_key')
openai.proxy = conf().get('proxy')
proxy = conf().get('proxy')
if proxy:
openai.proxy = proxy

def reply(self, query, context=None):
# acquire reply content


+ 1
- 0
config-template.json 파일 보기

@@ -1,5 +1,6 @@
{
"open_ai_api_key": "YOUR API KEY",
"proxy": "",
"single_chat_prefix": ["bot", "@bot"],
"single_chat_reply_prefix": "[bot] ",
"group_chat_prefix": ["@bot"],


Loading…
취소
저장