Finish MVP and dockerize

This commit is contained in:
2026-04-02 19:15:47 +02:00
parent 90ad5e0260
commit 30cb18b55e
50 changed files with 2346 additions and 17 deletions

22
dlib/cv/__init__.py Normal file
View File

@@ -0,0 +1,22 @@
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
__all__ = [
"StructuredBlock",
"StructuredDocument",
"PatchPayload",
"PatchSuggestion",
"PatchOperation",
"parse_docx_bytes",
"summarize_keywords",
"apply_patchset",
"validate_patchset",
]