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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -35,9 +35,7 @@ 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
- # st.write(res)
40
-
41
 
42
 
43
 
 
35
  if search != "":
36
  res = search_index(query=search)
37
  for m in res:
38
+ st.write(m['metadata']['Text'])
 
 
39
 
40
 
41