Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ if submit:
|
|
44 |
|
45 |
#fetch the similar text
|
46 |
docs = db.similarity_search(user_input)
|
47 |
-
print(docs)
|
48 |
st.subheader("Top Matches:")
|
49 |
st.text(docs[0].page_content)
|
50 |
st.text(docs[1].page_content)
|
|
|
44 |
|
45 |
#fetch the similar text
|
46 |
docs = db.similarity_search(user_input)
|
47 |
+
# print(docs)
|
48 |
st.subheader("Top Matches:")
|
49 |
st.text(docs[0].page_content)
|
50 |
st.text(docs[1].page_content)
|