AI-book / app.py
Omnibus's picture
Update app.py
37686b3 verified
raw
history blame
No virus
222 Bytes
import gradio as gr
def load_html():
with open('index.html','r') as h:
html=h.read()
h.close()
return html
with gr.Blocks() as app:
html = gr.HTML()
app.load(load_html,None,html)
app.launch()