from .docling import convert_docling | |
from .gemini import convert_gemini | |
from .gmft import convert_gmft | |
from .img2table import convert_img2table | |
from .marker import convert_marker | |
from .mineru import convert_mineru | |
from .syca import convert_sycamore | |
from .unstructured import convert_unstructured | |
# from .zerox import convert_zerox | |
__all__ = [ | |
"convert_docling", | |
"convert_marker", | |
"convert_mineru", | |
"convert_unstructured", | |
"convert_gemini", | |
# "convert_zerox", | |
"convert_img2table", | |
"convert_gmft", | |
"convert_sycamore", | |
] | |