"""使用 MarkItDown 库解析 DOCX 文件""" from typing import Optional, Tuple from scripts.core import parse_with_markitdown def parse(file_path: str) -> Tuple[Optional[str], Optional[str]]: """使用 MarkItDown 库解析 DOCX 文件""" return parse_with_markitdown(file_path)