Spaces:
Runtime error
Runtime error
File size: 243 Bytes
0ace4b0 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env python3
"""
Hugging Face Spaces entry point for CASL Voice Bot
"""
# Import the app from app_ui.py
from app_ui import app
# This is the entry point that Hugging Face Spaces will use
if __name__ == "__main__":
app.launch() |