You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- change some info level logging for per page processing into detail
level logging on trace logger
- replace the try block in `document_to_element_list` to use `getattr`
instead and add comment on the reason why sometimes `type` attribute may
not exist for an element
Copy file name to clipboardexpand all lines: CHANGELOG.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
## 0.14.3-dev3
1
+
## 0.14.3-dev4
2
2
3
3
### Enhancements
4
4
@@ -13,8 +13,9 @@
13
13
***Add the missing `form_extraction_skip_tables` argument to the `partition_pdf_or_image` call**.
14
14
***Turn off XML resolve entities** Sets `resolve_entities=False` for XML parsing with `lxml`
15
15
to avoid text being dynamically injected into the XML document.
16
-
17
16
***Chromadb change from Add to Upsert using element_id to make idempotent**
17
+
***Reduce excessive logging** Change per page ocr info level logging into detail level trace logging
18
+
***Replace try block in `document_to_element_list` for handling HTMLDocument** Use `getattr(element, "type", "")` to get the `type` attribute of an element when it exists. This is more explicit way to handle the special case for HTML documents and prevents other types of attribute error from being silenced by the try block
0 commit comments