Spaces:
Runtime error
Runtime error
笨蛋
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\
|
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\
|
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 |
|