Olubakka / app.py
Sachi Wagaarachchi
rename run.py to app.py
189e773
raw
history blame contribute delete
216 Bytes
#!/usr/bin/env python3
"""
Run script for the Gradio Qwen application.
This script imports and launches the Gradio app from the src package.
"""
from src.app import demo
if __name__ == "__main__":
demo.launch()