chansung's picture
Upload folder using huggingface_hub
155d75d verified
raw
history blame contribute delete
229 Bytes
#!/usr/bin/env python3
"""
Main entry point for the Auto Diffusers application.
Simple launcher that starts the Gradio web interface.
"""
from auto_diffusers.ui.gradio_interface import main
if __name__ == "__main__":
main()