Spaces:
Sleeping
Sleeping
File size: 231 Bytes
e799ba7 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
def serve_html():
with open("index.html") as f:
return f.read()
# Specify inputs as None since there are no input fields
app = gr.Interface(fn=serve_html, inputs=None, outputs="html")
app.launch()
|