File size: 216 Bytes
8483978
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/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()