SmilingTree commited on
Commit
0986805
·
verified ·
1 Parent(s): 29e8089

gr.Textbox

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ def generate(input_prompt):
12
 
13
  gradio_app = gr.Interface(
14
  generate,
15
- inputs=gr.Text(label="What kind of image would you like to generate?")
16
  outputs=[gr.Image(label="Generated Image")],
17
  title="IMAGE GENERATION!!",
18
  )
 
12
 
13
  gradio_app = gr.Interface(
14
  generate,
15
+ inputs=gr.Textbox(label="What kind of image would you like to generate?")
16
  outputs=[gr.Image(label="Generated Image")],
17
  title="IMAGE GENERATION!!",
18
  )