Sfoglia il codice sorgente

支持自定义openai_api_base

支持自定义openai_api_base

解决国内API被墙的问题,可以自定义使用自己的中转API
master
B1gM8c 1 anno fa
parent
commit
2c8da59b47
3 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  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 Vedi File

@@ -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 Vedi File

@@ -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 Vedi File

@@ -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…
Annulla
Salva