parrotmaker commited on
Commit
5627e5f
·
verified ·
1 Parent(s): 18da24e

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as app:
4
+ gr.HTML("<script>window.location.href = '/static/index.html'</script>")
5
+
6
+ app.launch()