Somnath3570's picture
Create app.py
e799ba7 verified
raw
history blame contribute delete
231 Bytes
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()