Paul-Joshi commited on
Commit
2c2e9c9
·
verified ·
1 Parent(s): 1225077

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -157,7 +157,7 @@ def main():
157
  # get the text chunks
158
  doc_splits = method_get_text_chunks(raw_text)
159
  # create vector store
160
- vectorstore = method_get_vectorstore(doc_splits)
161
  st.write(doc_splits)
162
  retriever_chain = get_context_retriever_chain(vector_store)
163
  # Generate response using the RAG pipeline
 
157
  # get the text chunks
158
  doc_splits = method_get_text_chunks(raw_text)
159
  # create vector store
160
+ vector_store = method_get_vectorstore(doc_splits)
161
  st.write(doc_splits)
162
  retriever_chain = get_context_retriever_chain(vector_store)
163
  # Generate response using the RAG pipeline