Skip to content

Commit a9c222c

Browse files
authored
Merge pull request #157 from enoch3712/156-vision-always-true-on-splitextract
removing hardcoded vision for image after split
2 parents d357490 + dd58245 commit a9c222c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extract_thinker/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ async def _extract(doc_group):
268268
# Set flag to skip loading since content is already processed
269269
extractor.set_skip_loading(True)
270270
try:
271-
result = await extractor.extract_async(group_pages, contract, vision=True)
271+
result = await extractor.extract_async(group_pages, contract, vision=vision)
272272
finally:
273273
# Reset flag after extraction
274274
extractor.set_skip_loading(False)

0 commit comments

Comments
 (0)