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

Update request_llms/bridge_chatgpt_vision.py

Browse files
request_llms/bridge_chatgpt_vision.py CHANGED
@@ -96,7 +96,7 @@ def predict(inputs, llm_kwargs, plugin_kwargs, chatbot, history=[], system_promp
96
  yield from update_ui(chatbot=chatbot, history=history, msg="api_key已导入") # 刷新界面
97
  return
98
  elif not is_any_api_key(chatbot._cookies['api_key']):
99
- chatbot.append((inputs, "缺少api_key。\n\n1. 临时解决方案:直接在输入区键入api_key,然后回车提交。\n\n2. 长效解决方案:在config.py中配置。"))
100
  yield from update_ui(chatbot=chatbot, history=history, msg="缺少api_key") # 刷新界面
101
  return
102
  if not have_recent_file:
@@ -268,7 +268,7 @@ def generate_payload(inputs, llm_kwargs, history, system_prompt, image_paths):
268
  整合所有信息,选择LLM模型,生成http请求,为发送请求做准备
269
  """
270
  if not is_any_api_key(llm_kwargs['api_key']):
271
- raise AssertionError("你提供了错误的API_KEY。\n\n1. 临时解决方案:直接在输入区键入api_key,然后回车提交。\n\n2. 长效解决方案:在config.py中配置。")
272
 
273
  api_key = select_api_key(llm_kwargs['api_key'], llm_kwargs['llm_model'])
274
 
 
96
  yield from update_ui(chatbot=chatbot, history=history, msg="api_key已导入") # 刷新界面
97
  return
98
  elif not is_any_api_key(chatbot._cookies['api_key']):
99
+ chatbot.append((inputs, "缺少api_key。\n\n请直接在输入区输入 令牌 / Key ,然后发送。"))
100
  yield from update_ui(chatbot=chatbot, history=history, msg="缺少api_key") # 刷新界面
101
  return
102
  if not have_recent_file:
 
268
  整合所有信息,选择LLM模型,生成http请求,为发送请求做准备
269
  """
270
  if not is_any_api_key(llm_kwargs['api_key']):
271
+ raise AssertionError("你提供了错误的API_KEY。\n\n请直接在输入区输入 令牌 / Key ,然后发送。")
272
 
273
  api_key = select_api_key(llm_kwargs['api_key'], llm_kwargs['llm_model'])
274