Spaces:
Runtime error
Runtime error
modify textbox
Browse files
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
|
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()
|