Update app.py
Browse files
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.
|
|
|
|
| 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 |
|