Spaces:
Running
Running
| """ | |
| Wrdler - Gradio Application Entry Point | |
| A vocabulary puzzle game with an 8x6 grid and 6 hidden words. | |
| This is the Gradio version, running alongside the Streamlit app. | |
| Usage: | |
| python gradio_app.py | |
| # or | |
| gradio gradio_app.py | |
| """ | |
| import gradio as gr | |
| from wrdler.gradio_ui import create_app | |
| # Create the Gradio app | |
| demo = create_app() | |
| if __name__ == "__main__": | |
| demo.launch( | |
| server_name="0.0.0.0", | |
| server_port=7860, | |
| share=False, | |
| show_error=True | |
| ) | |