Spaces:
Running
Running
Commit
·
a7267ed
1
Parent(s):
6734ea8
Update app.py
Browse files
app.py
CHANGED
@@ -65,6 +65,7 @@ if submit:
|
|
65 |
docs = db.similarity_search(user_input)
|
66 |
print(docs)
|
67 |
st.subheader("Top Matches:")
|
68 |
-
st.text(docs[0])
|
|
|
69 |
st.text(docs[1].page_content)
|
70 |
|
|
|
65 |
docs = db.similarity_search(user_input)
|
66 |
print(docs)
|
67 |
st.subheader("Top Matches:")
|
68 |
+
st.text(docs[0].page_content)
|
69 |
+
)
|
70 |
st.text(docs[1].page_content)
|
71 |
|