Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ with open("info.md", "r") as file:
|
|
15 |
info_md_content = file.read()
|
16 |
|
17 |
# Chunk the info.md content into smaller sections
|
18 |
-
chunk_size =
|
19 |
info_md_chunks = textwrap.wrap(info_md_content, chunk_size)
|
20 |
|
21 |
def get_all_chunks(chunks):
|
|
|
15 |
info_md_content = file.read()
|
16 |
|
17 |
# Chunk the info.md content into smaller sections
|
18 |
+
chunk_size = 1500 # Adjust this size as needed
|
19 |
info_md_chunks = textwrap.wrap(info_md_content, chunk_size)
|
20 |
|
21 |
def get_all_chunks(chunks):
|