We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e79777 commit a9617cdCopy full SHA for a9617cd
scripts/prepdocs.py
@@ -70,6 +70,7 @@ async def setup_file_strategy(credential: AsyncTokenCredential, args: Any) -> St
70
sentence_text_splitter = SentenceTextSplitter(has_image_embeddings=args.searchimages)
71
file_processors = {
72
".pdf": FileProcessor(pdf_parser, sentence_text_splitter),
73
+ ".html": FileProcessor(doc_int_parser, sentence_text_splitter),
74
".json": FileProcessor(JsonParser(), SimpleTextSplitter()),
75
".docx": FileProcessor(doc_int_parser, sentence_text_splitter),
76
".pptx": FileProcessor(doc_int_parser, sentence_text_splitter),
0 commit comments