mlworks90's picture
Upload __init__.py
06f9b39 verified
Raw
History Blame Contribute Delete
514 Bytes
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()