Spaces:
Running
Running
File size: 229 Bytes
155d75d |
1 2 3 4 5 6 7 8 9 10 |
#!/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() |