Spaces:
Paused
Paused
Update app.py
Browse files
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 |
|