cools commited on
Commit
97b02c0
·
1 Parent(s): acea0bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -35,7 +35,8 @@ search = st.text_input('Search', placeholder='First Amendment cannot protect lib
35
  if search != "":
36
  res = search_index(query=search)
37
  for m in res:
38
- st.write(m['metadata']['Text'])
 
39
 
40
 
41
 
 
35
  if search != "":
36
  res = search_index(query=search)
37
  for m in res:
38
+ st.markdown("-" + m['metadata']['Text'])
39
+ # st.write(m['metadata']['Text'])
40
 
41
 
42