Reduce the default chunk size in the reasoning pipeline to fit LLM capability

This commit is contained in:
trducng
2024-02-03 09:38:50 +07:00
parent 107bc7580e
commit bff55230ba
4 changed files with 20 additions and 6 deletions

View File

@@ -6,7 +6,15 @@ class FileUpload(BasePage):
def __init__(self, app):
self._app = app
self._supported_file_types = [
"image", ".pdf", ".txt", ".csv", ".xlsx", ".doc", ".docx", ".pptx", ".html"
"image",
".pdf",
".txt",
".csv",
".xlsx",
".doc",
".docx",
".pptx",
".html",
]
self.on_building_ui()