mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-03-18 12:40:06 +08:00
@@ -16,6 +16,7 @@ else:
|
|||||||
class ChatGPTBot(Bot):
|
class ChatGPTBot(Bot):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
openai.api_key = conf().get('open_ai_api_key')
|
openai.api_key = conf().get('open_ai_api_key')
|
||||||
|
openai.api_base = conf().get('open_ai_api_base')
|
||||||
proxy = conf().get('proxy')
|
proxy = conf().get('proxy')
|
||||||
if proxy:
|
if proxy:
|
||||||
openai.proxy = proxy
|
openai.proxy = proxy
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ user_session = dict()
|
|||||||
class OpenAIBot(Bot):
|
class OpenAIBot(Bot):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
openai.api_key = conf().get('open_ai_api_key')
|
openai.api_key = conf().get('open_ai_api_key')
|
||||||
|
openai.api_base = conf().get('open_ai_api_base')
|
||||||
|
|
||||||
|
|
||||||
def reply(self, query, context=None):
|
def reply(self, query, context=None):
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"open_ai_api_key": "YOUR API KEY",
|
"open_ai_api_key": "YOUR API KEY",
|
||||||
|
"open_ai_api_base":"",
|
||||||
"proxy": "",
|
"proxy": "",
|
||||||
"single_chat_prefix": ["bot", "@bot"],
|
"single_chat_prefix": ["bot", "@bot"],
|
||||||
"single_chat_reply_prefix": "[bot] ",
|
"single_chat_reply_prefix": "[bot] ",
|
||||||
|
|||||||
Reference in New Issue
Block a user