2025-07-31 15:35:23 +08:00

22 lines
508 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Document Module
文档处理模块
作为core的子模块提供文档处理功能
"""
from .text_extractor import TextExtractor, ExtractedDocument
from .content_integrator import ContentIntegrator, IntegratedContent
from .content_transformer import ContentTransformer, TransformedContent
__all__ = [
'TextExtractor',
'ContentIntegrator',
'ContentTransformer',
'ExtractedDocument',
'IntegratedContent',
'TransformedContent'
]