mlworks90 commited on
Commit
06f9b39
·
verified ·
1 Parent(s): 03d6a31

Upload __init__.py

Browse files
Files changed (1) hide show
  1. src/__init__.py +22 -0
src/__init__.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ python
2
+ """
3
+ Fashion Inpainting System
4
+
5
+ AI-powered fashion transformation with safety-first design.
6
+ """
7
+
8
+ from .fashion_safety_checker import create_fashion_safety_pipeline
9
+
10
+ __version__ = "1.0.0"
11
+ __author__ = "Your Name"
12
+ __license__ = "Apache-2.0"
13
+
14
+ # Main API exports
15
+ __all__ = [
16
+ 'create_fashion_safety_pipeline'
17
+ ]
18
+
19
+ # For backward compatibility and convenience
20
+ def create_pipeline():
21
+ """Convenience function to create fashion safety pipeline"""
22
+ return create_fashion_safety_pipeline()