File size: 514 Bytes
06f9b39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
python
"""

Fashion Inpainting System



AI-powered fashion transformation with safety-first design.

"""

from .fashion_safety_checker import create_fashion_safety_pipeline

__version__ = "1.0.0"
__author__ = "Your Name"
__license__ = "Apache-2.0"

# Main API exports
__all__ = [
    'create_fashion_safety_pipeline'
]

# For backward compatibility and convenience
def create_pipeline():
    """Convenience function to create fashion safety pipeline"""
    return create_fashion_safety_pipeline()