""" Voice Cloning Demo - Hugging Face Spaces Entry Point """ import sys from pathlib import Path # Add src to path sys.path.insert(0, str(Path(__file__).parent)) # Import and run the main app from deployment.app import demo if __name__ == "__main__": demo.launch()