Skip to content

Commit d5617bb

Browse files
remove posters
1 parent 1e9094d commit d5617bb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

recipes/weaviate/demo_app.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,7 @@ def perform_search(conn, movie_type, rag_prompt, year_range, mode):
133133
cols = st.columns(NUM_IMAGES_PER_ROW)
134134
for index, row in df.iterrows():
135135
col = cols[index % NUM_IMAGES_PER_ROW]
136-
if row["poster"]:
137-
col.image(base64_to_image(row["poster"]), width=200)
138-
images.append(base64_to_image(row["poster"]))
139-
else:
140-
col.write(f"No Image Available for: {row['title']}")
136+
col.write(row['title'])
141137
st.write("Now generating recommendation from these: ...")
142138

143139
st.session_state.messages.append(

0 commit comments

Comments
 (0)