mikepastor11 commited on
Commit
f72b341
1 Parent(s): b31777c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,8 +69,8 @@ def get_vectorstore(text_chunks):
69
  # text_chunks="this is a test"
70
  # FAISS, Chroma and other vector databases
71
  #
72
- # vectorstore = FAISS.from_texts(texts=text_chunks, embedding=embeddings)
73
- print('FAISS succeeds: ')
74
 
75
  return vectorstore
76
 
 
69
  # text_chunks="this is a test"
70
  # FAISS, Chroma and other vector databases
71
  #
72
+ vectorstore = FAISS.from_texts(texts=text_chunks, embedding=embeddings)
73
+ st.write('FAISS succeeds: ')
74
 
75
  return vectorstore
76