fb700 commited on
Commit
635fd9f
1 Parent(s): 76bbdd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1112,7 +1112,7 @@ def netOrNotnet(
1112
  user_input_prompt = '请判断这个指令:“' + user_input + '”是否需要通过网络搜索才能准确完成,你只需要回答"是"或者"否",不要其它多余的内容'
1113
 
1114
  response, history = model.chat(tokenizer, user_input_prompt,top_p=0.2, temperature=0.85, history=[])
1115
- ytkeywords = ['是。', '不清楚', '无法', '是否', '不知道', ' 取决于']
1116
 
1117
  NET = any(keyword in response for keyword in ytkeywords)
1118
 
 
1112
  user_input_prompt = '请判断这个指令:“' + user_input + '”是否需要通过网络搜索才能准确完成,你只需要回答"是"或者"否",不要其它多余的内容'
1113
 
1114
  response, history = model.chat(tokenizer, user_input_prompt,top_p=0.2, temperature=0.85, history=[])
1115
+ ytkeywords = ['是。', '不清楚', '无法', '是否', '不知道', '需要通过网络', '取决于']
1116
 
1117
  NET = any(keyword in response for keyword in ytkeywords)
1118