Duplicated from Omnibus/AI-book
b73125b 37686b3 b73125b 37686b3 b73125b
1
2
3
4
5
6
7
8
9
10
11
12
13
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()