AI-RADIO / run.py
Nikita Makarov
v2.1 - works - but without syncs of voice and music.
c94876b
raw
history blame contribute delete
366 Bytes
#!/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
)