#!/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() |
#!/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() |