mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 02:20:47 +00:00
update a small bug when the input doesn't contain image
This commit is contained in:
parent
ffaf58e7f6
commit
45cd88cf9d
@ -476,8 +476,9 @@ def gradio_answer(chatbot, chat_state, img_list, temperature):
|
||||
|
||||
def gradio_stream_answer(chatbot, chat_state, img_list, temperature):
|
||||
print('chat state', chat_state.get_prompt())
|
||||
if not isinstance(img_list[0], torch.Tensor):
|
||||
chat.encode_img(img_list)
|
||||
if len(img_list) > 0:
|
||||
if not isinstance(img_list[0], torch.Tensor):
|
||||
chat.encode_img(img_list)
|
||||
streamer = chat.stream_answer(conv=chat_state,
|
||||
img_list=img_list,
|
||||
temperature=temperature,
|
||||
|
Loading…
Reference in New Issue
Block a user