- 添加多种文档解析器 (PDF, Word, Excel, Markdown 等) - 添加基础解析器和链式解析器 - 添加存储和注册机制 - 添加 gRPC 服务实现 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
145 B
Python
11 lines
145 B
Python
"""
|
|
Parser module for AI-Core document processing.
|
|
"""
|
|
|
|
from .parser_simple import Parser, Document
|
|
|
|
__all__ = [
|
|
"Parser",
|
|
"Document",
|
|
]
|