Spaces:
Running
Running
Upload __init__.py
Browse files- toxra_core/__init__.py +10 -0
toxra_core/__init__.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
TOXRA.AI private extraction core.
|
| 3 |
+
|
| 4 |
+
Entrypoint:
|
| 5 |
+
toxra_core.run_extraction(...)
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
from .pipeline import run_extraction
|
| 9 |
+
|
| 10 |
+
__all__ = ["run_extraction"]
|