abidlabs HF staff commited on
Commit
1fd92b8
1 Parent(s): 2992a6a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -39,7 +39,7 @@ css = """
39
 
40
  gr.Interface(fn=predict,
41
  theme="default",
42
- css=css,
43
- inputs=["text", "state"],
44
- outputs=["html", "state"]).launch()
45
 
39
 
40
  gr.Interface(fn=predict,
41
  theme="default",
42
+ inputs=[gr.inputs.Text(placeholder="How are you?"), "state"],
43
+ outputs=["html", "state"],
44
+ css=css).launch()
45