hysts HF staff commited on
Commit
85f6d97
·
1 Parent(s): b7a6a02
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -56,7 +56,7 @@ def process_new_user_message(message: dict) -> list[dict]:
56
  image_index += 1
57
  elif part.strip():
58
  content.append({"type": "text", "text": part.strip()})
59
- elif isinstance(part, str) and not part == "<image>":
60
  content.append({"type": "text", "text": part})
61
  print(content)
62
  return content
 
56
  image_index += 1
57
  elif part.strip():
58
  content.append({"type": "text", "text": part.strip()})
59
+ elif isinstance(part, str) and part != "<image>":
60
  content.append({"type": "text", "text": part})
61
  print(content)
62
  return content