笨蛋 commited on
Commit
b9cd251
1 Parent(s): 1ddd490

Update request_llms/bridge_chatgpt.py

Browse files
Files changed (1) hide show
  1. request_llms/bridge_chatgpt.py +2 -2
request_llms/bridge_chatgpt.py CHANGED
@@ -153,7 +153,7 @@ def predict(inputs, llm_kwargs, plugin_kwargs, chatbot, history=[], system_promp
153
  yield from update_ui(chatbot=chatbot, history=history, msg="api_key已导入") # 刷新界面
154
  return
155
  elif not is_any_api_key(chatbot._cookies['api_key']):
156
- chatbot.append((inputs, "缺少api_key。\n\n1. 临时解决方案:直接在输入区键入api_key,然后回车提交。\n\n2. 长效解决方案:在config.py中配置。"))
157
  yield from update_ui(chatbot=chatbot, history=history, msg="缺少api_key") # 刷新界面
158
  return
159
 
@@ -304,7 +304,7 @@ def generate_payload(inputs, llm_kwargs, history, system_prompt, stream):
304
  整合所有信息,选择LLM模型,生成http请求,为发送请求做准备
305
  """
306
  if not is_any_api_key(llm_kwargs['api_key']):
307
- raise AssertionError("你提供了错误的API_KEY。\n\n1. 临时解决方案:直接在输入区键入api_key,然后回车提交。\n\n2. 长效解决方案:在config.py中配置。")
308
 
309
  api_key = select_api_key(llm_kwargs['api_key'], llm_kwargs['llm_model'])
310
 
 
153
  yield from update_ui(chatbot=chatbot, history=history, msg="api_key已导入") # 刷新界面
154
  return
155
  elif not is_any_api_key(chatbot._cookies['api_key']):
156
+ chatbot.append((inputs, "缺少api_key。\n\n请直接在输入区输入 令牌 / Key ,然后发送。"))
157
  yield from update_ui(chatbot=chatbot, history=history, msg="缺少api_key") # 刷新界面
158
  return
159
 
 
304
  整合所有信息,选择LLM模型,生成http请求,为发送请求做准备
305
  """
306
  if not is_any_api_key(llm_kwargs['api_key']):
307
+ raise AssertionError("你提供了错误的API_KEY。\n\n请直接在输入区输入 令牌 / Key ,然后发送。")
308
 
309
  api_key = select_api_key(llm_kwargs['api_key'], llm_kwargs['llm_model'])
310