taufiqdp commited on
Commit
55b10e6
·
1 Parent(s): c148042

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -35,7 +35,8 @@ def chat(text):
35
  return response.result
36
 
37
  app = gr.Interface(fn=chat,
38
- inputs=gr.Textbox(lines=10, label="Text", max_lines=10),
 
39
  outputs=gr.Textbox(lines=10, label="Output", max_lines=10, show_copy_button=True),
40
  allow_flagging="never")
41
 
 
35
  return response.result
36
 
37
  app = gr.Interface(fn=chat,
38
+ inputs=gr.Textbox(lines=10, label="Text", max_lines=10,
39
+ placeholder="Write something amazing. It will be checked for grammar and spelling errors automatically."),
40
  outputs=gr.Textbox(lines=10, label="Output", max_lines=10, show_copy_button=True),
41
  allow_flagging="never")
42