Spaces:
Runtime error
Runtime error
Fix Bug
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ with gr.Blocks() as demo:
|
|
47 |
with gr.Row():
|
48 |
inp = gr.inputs.Textbox(label = "Question")
|
49 |
with gr.Column():
|
50 |
-
display = gr.outputs.Image(label = "Outfit")
|
51 |
output = gr.outputs.Textbox(label = "Suggestion")
|
52 |
btn = gr.Button(label = "Run")
|
53 |
btn.click(fasion, inputs = [inp], outputs = [inp, output, display])
|
|
|
47 |
with gr.Row():
|
48 |
inp = gr.inputs.Textbox(label = "Question")
|
49 |
with gr.Column():
|
50 |
+
display = gr.outputs.Image(type = "filepath", label = "Outfit")
|
51 |
output = gr.outputs.Textbox(label = "Suggestion")
|
52 |
btn = gr.Button(label = "Run")
|
53 |
btn.click(fasion, inputs = [inp], outputs = [inp, output, display])
|