Zevol commited on
Commit
8ac1a1e
1 Parent(s): f496a9f

Update bot/chatgpt/chat_gpt_bot.py

Browse files
Files changed (1) hide show
  1. bot/chatgpt/chat_gpt_bot.py +1 -1
bot/chatgpt/chat_gpt_bot.py CHANGED
@@ -44,7 +44,7 @@ class ChatGPTBot(Bot):
44
  response = openai.ChatCompletion.create(
45
  model="gpt-3.5-turbo", # 对话模型的名称
46
  messages=query,
47
- temperature=0.1, # 值在[0,1]之间,越大表示回复越具有不确定性
48
  max_tokens=400, # 回复最大的字符数
49
  top_p=1,
50
  frequency_penalty=0, # [-2,2]之间,该值越大则更倾向于产生不同的内容
 
44
  response = openai.ChatCompletion.create(
45
  model="gpt-3.5-turbo", # 对话模型的名称
46
  messages=query,
47
+ temperature=0, # 值在[0,1]之间,越大表示回复越具有不确定性
48
  max_tokens=400, # 回复最大的字符数
49
  top_p=1,
50
  frequency_penalty=0, # [-2,2]之间,该值越大则更倾向于产生不同的内容