File size: 679 Bytes
f7892e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

#!/usr/bin/env python3
"""
Simple launcher for ScriptVoice Gradio Application

Install dependencies with:
    pip install -r requirements.txt

Then run:
    python run.py
"""

if __name__ == "__main__":
    from main import create_interface
    
    print("πŸš€ Starting ScriptVoice - AI-Powered Story Intelligence Platform")
    print("πŸ“¦ Make sure you have installed dependencies: pip install -r requirements.txt")
    print("🌐 The app will be available at: http://localhost:7860")
    
    # Create and launch the app
    app = create_interface()
    app.launch(
        server_name="0.0.0.0",
        server_port=7860,
        share=True,
        show_error=True
    )