cutiee82 commited on
Commit
5d06ec9
1 Parent(s): 1f38ba5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ iface = gr.Interface.load(
4
+ "prompthero/openjourney-v4",
5
+ title="Openjourney V4",
6
+ description="Generate a stunning image using Openjourney."
7
+ )
8
+
9
+ iface.launch()