Spaces:
Paused
Paused
Commit
·
36ea48a
1
Parent(s):
addcbb7
Update bot/chatgpt/chat_gpt_bot.py
Browse files
bot/chatgpt/chat_gpt_bot.py
CHANGED
@@ -45,7 +45,7 @@ class ChatGPTBot(Bot):
|
|
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]之间,该值越大则更倾向于产生不同的内容
|
|
|
45 |
model="gpt-3.5-turbo", # 对话模型的名称
|
46 |
messages=query,
|
47 |
temperature=1, # 值在[0,1]之间,越大表示回复越具有不确定性
|
48 |
+
max_tokens=2048, # 回复最大的字符数
|
49 |
top_p=1,
|
50 |
frequency_penalty=2, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|
51 |
presence_penalty=2, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|