2026-03-09 10:27:08 +08:00
|
|
|
"""
|
2026-03-10 15:01:52 +08:00
|
|
|
Parser module for AI-Core document processing.
|
2026-03-09 10:27:08 +08:00
|
|
|
"""
|
|
|
|
|
|
2026-03-10 15:01:52 +08:00
|
|
|
from .parser_simple import Parser, Document
|
2026-03-09 10:27:08 +08:00
|
|
|
|
2026-03-09 16:08:44 +08:00
|
|
|
__all__ = [
|
|
|
|
|
"Parser",
|
2026-03-10 15:01:52 +08:00
|
|
|
"Document",
|
2026-03-09 16:08:44 +08:00
|
|
|
]
|