Varshith dharmaj commited on
Upload core/__init__.py with huggingface_hub
Browse files- core/__init__.py +6 -0
core/__init__.py
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Core package for verification engine."""
|
| 2 |
+
|
| 3 |
+
from .verification_engine import run_verification_parallel
|
| 4 |
+
|
| 5 |
+
__all__ = ['run_verification_parallel']
|
| 6 |
+
|