Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
lastmileai/dalle3-prompt-share
umeshai
/
dalle3-prompt-share
like
13
Runtime error
App
Files
Files
Community
4
tanyarai
commited on
Feb 29
Commit
8d0dafd
•
1 Parent(s):
cc2d507
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
from gradio_notebook import GradioNotebook
3
+
4
+
AICONFIG_FILE_PATH = "./my_app.aiconfig.json"
5
+
6
+
with gr.Blocks() as demo:
7
+
GradioNotebook()
8
+
9
+
demo.queue().launch()