From 256093d86879efe317e280f1a774a8909fd73592 Mon Sep 17 00:00:00 2001 From: Yiorgis Gozadinos Date: Thu, 25 Sep 2025 10:08:09 +0300 Subject: [PATCH] AsciiDoc uses .adoc, not just .asciidoc extensions --- src/haiku/rag/reader.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/haiku/rag/reader.py b/src/haiku/rag/reader.py index cd2c6128..8e7fba2c 100644 --- a/src/haiku/rag/reader.py +++ b/src/haiku/rag/reader.py @@ -10,6 +10,8 @@ from haiku.rag.utils import text_to_docling_document class FileReader: # Extensions supported by docling docling_extensions: ClassVar[list[str]] = [ + ".adoc", + ".asc", ".asciidoc", ".bmp", ".csv",