Spaces:
Sleeping
Sleeping
Chandranshu Jain
commited on
Commit
•
5b20792
1
Parent(s):
352a5fd
Update app.py
Browse files
app.py
CHANGED
@@ -86,7 +86,9 @@ def main():
|
|
86 |
if st.button("Submit & Process", key="process_button"):
|
87 |
with st.spinner("Processing..."):
|
88 |
raw_text = get_pdf(pdf_docs)
|
|
|
89 |
text_chunks = text_splitter(raw_text)
|
|
|
90 |
if query:
|
91 |
embedding(text_chunks,query)
|
92 |
st.success("Done")
|
|
|
86 |
if st.button("Submit & Process", key="process_button"):
|
87 |
with st.spinner("Processing..."):
|
88 |
raw_text = get_pdf(pdf_docs)
|
89 |
+
print(raw_text)
|
90 |
text_chunks = text_splitter(raw_text)
|
91 |
+
print(text_chunks)
|
92 |
if query:
|
93 |
embedding(text_chunks,query)
|
94 |
st.success("Done")
|