Update app.py
Browse files
app.py
CHANGED
@@ -62,6 +62,7 @@ if st.button("Search"):
|
|
62 |
# Chunk the scraped text using chunk.py
|
63 |
chunked_text = chunk.chunk_text(scraped_text)
|
64 |
|
|
|
65 |
# Save chunked data to a .txt file for later use
|
66 |
file_name = f"chunked_data_link_{i}.txt"
|
67 |
with open(file_name, "w") as f:
|
|
|
62 |
# Chunk the scraped text using chunk.py
|
63 |
chunked_text = chunk.chunk_text(scraped_text)
|
64 |
|
65 |
+
chunk.display_chunks(chunked_text)
|
66 |
# Save chunked data to a .txt file for later use
|
67 |
file_name = f"chunked_data_link_{i}.txt"
|
68 |
with open(file_name, "w") as f:
|