秋山翔 commited on
Commit
a3348bb
1 Parent(s): cd1eaaf

TEST: debug spaces not rendering

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -59,9 +59,11 @@ examples = [
59
 
60
 
61
  gr.Interface(
62
- inference,
63
- [gr.inputs.Image(type="pil")],
64
- gr.outputs.Image(type="pil"),
 
 
65
  title=title,
66
  description=description,
67
  article=article,
 
59
 
60
 
61
  gr.Interface(
62
+ fn=inference,
63
+ inputs=gr.inputs.Textbox(
64
+ lines=1, placeholder=None, default="", label=None
65
+ ),
66
+ outputs=gr.outputs.Textbox(type="auto", label=None),
67
  title=title,
68
  description=description,
69
  article=article,