hchevva commited on
Commit
e46893f
·
verified ·
1 Parent(s): 578924d

Upload __init__.py

Browse files
Files changed (1) hide show
  1. 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"]