소스 검색

Merge pull request #465 from B1gM8c/master

支持自定义openai_api_base
master
zhayujie GitHub 1 년 전
부모
커밋
1dc39af423
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      bot/chatgpt/chat_gpt_bot.py
  2. +1
    -0
      bot/openai/open_ai_bot.py
  3. +1
    -0
      config-template.json

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

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


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

@@ -12,6 +12,7 @@ user_session = dict()
class OpenAIBot(Bot):
def __init__(self):
openai.api_key = conf().get('open_ai_api_key')
openai.api_base = conf().get('open_ai_api_base')


def reply(self, query, context=None):


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

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


Loading…
취소
저장