lewisliuX123
commited on
Commit
•
0105f92
1
Parent(s):
78d4f1b
Update bot/chatgpt/chat_gpt_bot.py
Browse files
bot/chatgpt/chat_gpt_bot.py
CHANGED
@@ -42,13 +42,14 @@ 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 |
-
|
49 |
top_p=1,
|
50 |
-
frequency_penalty=
|
51 |
-
presence_penalty=
|
52 |
)
|
53 |
# res_content = response.choices[0]['text'].strip().replace('<|endoftext|>', '')
|
54 |
logger.info(response.choices[0]['message']['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-16k-0613", # 对话模型的名称
|
46 |
messages=query,
|
47 |
+
stream=Ture,
|
48 |
temperature=1, # 值在[0,1]之间,越大表示回复越具有不确定性
|
49 |
+
max_tokens=600, # 回复最大的字符数
|
50 |
top_p=1,
|
51 |
+
frequency_penalty=0, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|
52 |
+
presence_penalty=0, # [-2,2]之间,该值越大则更倾向于产生不同的内容
|
53 |
)
|
54 |
# res_content = response.choices[0]['text'].strip().replace('<|endoftext|>', '')
|
55 |
logger.info(response.choices[0]['message']['content'])
|