File size: 259 Bytes
683d749 70830d6 bae16e4 9ff4c0b bae16e4 9ff4c0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""
The main entry-point for the Spaces application
Create a Gradio app and launch it
"""
from arena.c4 import make_display
from dotenv import load_dotenv
if __name__ == "__main__":
load_dotenv(override=True)
app = make_display()
app.launch()
|