lewisliuX123
commited on
Commit
•
d1f1036
1
Parent(s):
598ed43
Update bot/chatgpt/chat_gpt_bot.py
Browse files
bot/chatgpt/chat_gpt_bot.py
CHANGED
@@ -12,7 +12,7 @@ user_session = dict()
|
|
12 |
class ChatGPTBot(Bot):
|
13 |
def __init__(self):
|
14 |
openai.api_key = conf().get('open_ai_api_key')
|
15 |
-
|
16 |
|
17 |
def reply(self, query, context=None):
|
18 |
# acquire reply content
|
@@ -42,10 +42,10 @@ class ChatGPTBot(Bot):
|
|
42 |
def reply_text(self, query, user_id, retry_count=0):
|
43 |
try:
|
44 |
response = openai.ChatCompletion.create(
|
45 |
-
model="gpt-3.5-turbo
|
46 |
messages=query,
|
47 |
temperature=1, # 值在[0,1]之间,越大表示回复越具有不确定性
|
48 |
-
max_tokens=
|
49 |
top_p=1,
|
50 |
frequency_penalty=2, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|
51 |
presence_penalty=2, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|
|
|
12 |
class ChatGPTBot(Bot):
|
13 |
def __init__(self):
|
14 |
openai.api_key = conf().get('open_ai_api_key')
|
15 |
+
openai.api_base="https://apai.zyai.online/v1"
|
16 |
|
17 |
def reply(self, query, context=None):
|
18 |
# acquire reply content
|
|
|
42 |
def reply_text(self, query, user_id, retry_count=0):
|
43 |
try:
|
44 |
response = openai.ChatCompletion.create(
|
45 |
+
model="gpt-3.5-turbo", # 对话模型的名称
|
46 |
messages=query,
|
47 |
temperature=1, # 值在[0,1]之间,越大表示回复越具有不确定性
|
48 |
+
max_tokens=600, # 回复最大的字符数
|
49 |
top_p=1,
|
50 |
frequency_penalty=2, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|
51 |
presence_penalty=2, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|