Ubuntu commited on
Commit
c7f445d
1 Parent(s): 4fd98d5

Add application file

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -16,5 +16,9 @@ def produce_art(prompt):
16
  return images.images[0]
17
 
18
  prompt = "RitaT style collage of Stalin with Kefir in outer space, fine details trending on arthouse"
19
- iface = gr.Interface(fn=produce_art, inputs="text", outputs="image")
 
 
 
 
20
  iface.launch()
 
16
  return images.images[0]
17
 
18
  prompt = "RitaT style collage of Stalin with Kefir in outer space, fine details trending on arthouse"
19
+
20
+ iface = gr.Interface(fn=produce_art,
21
+ inputs=gr.Textbox(value=prompt),
22
+ outputs=gr.Image(shape=(512, 512))
23
+ )
24
  iface.launch()