Spaces:
Sleeping
Sleeping
| """ | |
| Document Data Extractor - Extract structured data from any document into LLM-ready formats. | |
| """ | |
| from .extractor import DocumentExtractor | |
| from .result import ConversionResult | |
| from .processors import GPUConversionResult, CloudConversionResult | |
| from .exceptions import ConversionError, UnsupportedFormatError | |
| from .config import InternalConfig | |
| from .services.api_key_pool import ( | |
| ApiKeyPool, | |
| get_pool, | |
| add_api_key, | |
| remove_api_key, | |
| list_api_keys, | |
| get_available_key, | |
| ) | |
| __version__ = "1.1.5" | |
| __all__ = [ | |
| "DocumentExtractor", | |
| "ConversionResult", | |
| "GPUConversionResult", | |
| "CloudConversionResult", | |
| "ConversionError", | |
| "UnsupportedFormatError", | |
| "InternalConfig", | |
| "ApiKeyPool", | |
| "get_pool", | |
| "add_api_key", | |
| "remove_api_key", | |
| "list_api_keys", | |
| "get_available_key", | |
| ] |