File size: 366 Bytes
3a37184
 
 
 
 
 
 
 
 
 
 
 
 
 
c94876b
3a37184
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python3
"""Entry point for AI Radio application"""
import sys
import os

# Add src directory to Python path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))

# Import and run the app
from app import demo

if __name__ == "__main__":
    demo.launch(
        server_name="0.0.0.0",
        server_port=7871,
        share=False
    )