Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Omnibus/AI-book
Nymbo
/
AI-book
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Omnibus
commited on
Feb 20, 2024
Commit
b73125b
·
verified
·
1 Parent(s):
229d5ee
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as app:
4
+
gr.HTML('index.html')
5
+
app.launch()