Tonic commited on
Commit
598f58c
·
1 Parent(s): 7e8c4e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -21
app.py CHANGED
@@ -138,31 +138,16 @@ def predict(_chatbot, task_history) -> tuple:
138
  tokenized_inputs = tokenizer(inputs, return_tensors='pt')
139
  tokenized_inputs = tokenized_inputs.to(model.device)
140
  pred = model.generate(**tokenized_inputs)
141
- response = tokenizer.decode(pred.cpu()[0], skip_special_tokens=False)
142
  if 'image' in query[0]:
143
  print("Model response:", response)
144
- if 'image' in query[0]:
145
- image = tokenizer.draw_bbox_on_latest_picture(response)
146
- if image is not None:
147
- image_path = save_image(image, uploaded_file_dir)
148
- _chatbot[-1] = (chat_query, (image_path,))
149
- if task_history:
150
- task_history[-1] = (chat_query, image_path)
151
- else:
152
- task_history.append((chat_query, image_path))
153
- else:
154
- _chatbot[-1] = (chat_query, response)
155
- if task_history:
156
- task_history[-1] = (chat_query, response)
157
- else:
158
- task_history.append((chat_query, response))
159
  else:
160
- text_response = response.strip() # Ensure it's just a string
161
  _chatbot[-1] = (chat_query, text_response)
162
- if task_history:
163
- task_history[-1] = (chat_query, text_response)
164
- else:
165
- task_history.append((chat_query, text_response))
166
 
167
  return _chatbot, task_history
168
 
 
138
  tokenized_inputs = tokenizer(inputs, return_tensors='pt')
139
  tokenized_inputs = tokenized_inputs.to(model.device)
140
  pred = model.generate(**tokenized_inputs)
141
+ response = tokenizer.decode(pred.cpu()[0], skip_special_tokens=False)
142
  if 'image' in query[0]:
143
  print("Model response:", response)
144
+ image_path = response.strip() # Ensure it's just a string path or text
145
+ _chatbot[-1] = (chat_query, image_path)
146
+ task_history[-1] = (chat_query, image_path)
 
 
 
 
 
 
 
 
 
 
 
 
147
  else:
148
+ text_response = response.strip()
149
  _chatbot[-1] = (chat_query, text_response)
150
+ task_history[-1] = (chat_query, text_response)
 
 
 
151
 
152
  return _chatbot, task_history
153