PinoCorgi commited on
Commit
bcb4b7e
1 Parent(s): c31e1ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -46,7 +46,8 @@ button = st.button("Find Similar Questions on Leetcode")
46
  if text_input:
47
  query = text_input
48
  answer = get_similar_links(query, db, embedding_vector)
49
- st.write("".join(answer))
 
50
 
51
  else:
52
  st.info("Please Input Valid Text")
 
46
  if text_input:
47
  query = text_input
48
  answer = get_similar_links(query, db, embedding_vector)
49
+ for link in answer:
50
+ st.write(link)
51
 
52
  else:
53
  st.info("Please Input Valid Text")