ethe commited on
Commit
8f82489
·
1 Parent(s): cf3a5f9

modify textbox

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,8 +43,8 @@ with gr.Row():
43
  object_fit="contain")
44
  demo = gr.Interface(
45
  fn=inference,
46
- inputs=input_prompt+prompt,
47
- outputs=result_image
48
  )
49
 
50
  demo.launch()
 
43
  object_fit="contain")
44
  demo = gr.Interface(
45
  fn=inference,
46
+ inputs=[input_prompt],
47
+ outputs=[result_image]
48
  )
49
 
50
  demo.launch()