Segizu commited on
Commit
d771ba3
·
1 Parent(s): 17df602
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ def find_similar_faces(uploaded_image):
49
  text_summary = ""
50
  for sim, name, img in top_matches:
51
  caption = f"{name} - Similitud: {sim:.2f}"
52
- gallery_items.append({"image": img, "caption": caption})
53
  text_summary += caption + "\n"
54
 
55
  return gallery_items, text_summary
 
49
  text_summary = ""
50
  for sim, name, img in top_matches:
51
  caption = f"{name} - Similitud: {sim:.2f}"
52
+ gallery_items.append((img, caption))
53
  text_summary += caption + "\n"
54
 
55
  return gallery_items, text_summary