Spaces:
Running
Running
lukestanley
commited on
Commit
·
171111d
1
Parent(s):
38a55db
Fix Gradio textbox with placeholder
Browse files
app.py
CHANGED
@@ -92,7 +92,7 @@ def chill_out(text):
|
|
92 |
|
93 |
demo = gr.Interface(
|
94 |
fn=chill_out,
|
95 |
-
inputs=gr.
|
96 |
outputs="html",
|
97 |
examples=examples,
|
98 |
cache_examples=True,
|
|
|
92 |
|
93 |
demo = gr.Interface(
|
94 |
fn=chill_out,
|
95 |
+
inputs=gr.Textbox(lines=2, placeholder="Enter some spicy text here..."),
|
96 |
outputs="html",
|
97 |
examples=examples,
|
98 |
cache_examples=True,
|