mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 16:53:38 +00:00
Agent-Logs-Url: https://github.com/velocitatem/cvfs/sessions/fb35fb9a-a89e-4df0-9584-109f7151509c Co-authored-by: velocitatem <60182044+velocitatem@users.noreply.github.com>
27 lines
631 B
Python
27 lines
631 B
Python
from .schema import (
|
|
StructuredBlock,
|
|
StructuredDocument,
|
|
PatchPayload,
|
|
PatchSuggestion,
|
|
PatchOperation,
|
|
)
|
|
from .parser import parse_docx_bytes, summarize_keywords
|
|
from .patcher import apply_patchset
|
|
from .ats_guard import validate_patchset
|
|
from .docx_export import generate_patched_docx
|
|
from .pdf_export import docx_bytes_to_pdf
|
|
|
|
__all__ = [
|
|
"StructuredBlock",
|
|
"StructuredDocument",
|
|
"PatchPayload",
|
|
"PatchSuggestion",
|
|
"PatchOperation",
|
|
"parse_docx_bytes",
|
|
"summarize_keywords",
|
|
"apply_patchset",
|
|
"validate_patchset",
|
|
"generate_patched_docx",
|
|
"docx_bytes_to_pdf",
|
|
]
|