Dox / app.py
DSDUDEd's picture
Update app.py
d9ead0b verified
raw
history blame contribute delete
159 Bytes
import gradio as gr
# Read the HTML content
html_content = open("index.html", "r").read()
with gr.Blocks() as demo:
gr.HTML(html_content)
demo.launch()