ArturG9 commited on
Commit
4df9abe
1 Parent(s): ac7d30d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -48,14 +48,13 @@ for filename in os.listdir(data_path):
48
 
49
  documents.extend(documents)
50
 
51
- st.write("documents")
52
- st.write(documents[0])
53
 
54
 
55
  docs = split_docs(documents, 350, 40)
56
 
57
  st.write("docs")
58
- st.write(docs)
59
  vectorstore = get_vectorstore(docs)
60
 
61
 
 
48
 
49
  documents.extend(documents)
50
 
51
+
 
52
 
53
 
54
  docs = split_docs(documents, 350, 40)
55
 
56
  st.write("docs")
57
+ st.write(docs[1])
58
  vectorstore = get_vectorstore(docs)
59
 
60