Update app.py
Browse files
app.py
CHANGED
@@ -30,5 +30,5 @@ def rountrip(img):
|
|
30 |
prompt=interrogate(img)
|
31 |
return generate_img(prompt)
|
32 |
|
33 |
-
demo = gr.Interface(rountrip, gr.Image(),gr.Image())
|
34 |
demo.launch()
|
|
|
30 |
prompt=interrogate(img)
|
31 |
return generate_img(prompt)
|
32 |
|
33 |
+
demo = gr.Interface(rountrip, gr.Image(type= 'filepath'),gr.Image(type= 'filepath'))
|
34 |
demo.launch()
|