mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 16:53:38 +00:00
Finish MVP and dockerize
This commit is contained in:
22
dlib/cv/__init__.py
Normal file
22
dlib/cv/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user