1 Commits

Author SHA1 Message Date
Vik Paruchuri
2151833414 Fix file output dir 2025-10-21 11:54:05 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ def save_merged_output(
# Save extracted images if requested
if save_images and result.images:
images_dir = file_output_dir / "images"
images_dir = file_output_dir
images_dir.mkdir(exist_ok=True)
for img_name, pil_image in result.images.items():

View File

@@ -1,6 +1,6 @@
[project]
name = "chandra-ocr"
version = "0.1.5"
version = "0.1.6"
description = "OCR model that converts documents to markdown, HTML, or JSON."
readme = "README.md"
requires-python = ">=3.10"