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 c6b069e commit 6aeea1dCopy full SHA for 6aeea1d
sources/gc-qa-rag-etl/etlapp/das/das_generic.py
@@ -118,8 +118,14 @@ def das_generic_main(
118
ensure_folder_exists(output_dir)
119
120
logger.info(f"MarkItDown instance is getting")
121
- markitdown_inst = get_markitdown_inst()
122
- logger.info(f"MarkItDown instance created")
+ markitdown_inst = None
+ try:
123
+ markitdown_inst = get_markitdown_inst()
124
+ logger.info(f"MarkItDown instance created")
125
+ except:
126
127
+ logger.info(f"MarkItDown instance created failed")
128
+ return
129
130
files = collect_files(input_dir)
131
logger.info(f"Found {len(files)} files in {input_dir}")
0 commit comments