wolf-of-nyc / run.py
yetog's picture
Upload 21 files
f7892e5 verified
raw
history blame contribute delete
679 Bytes
#!/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
)