Spaces:
Runtime error
Runtime error
ayan khan
commited on
Commit
•
722ceb6
1
Parent(s):
973147b
Label change
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ def greet(text):
|
|
4 |
return "Hello " + text + "!!"
|
5 |
|
6 |
|
7 |
-
textbox = gr.Textbox()
|
8 |
|
9 |
iface = gr.Interface(fn=greet, inputs=textbox, outputs="text")
|
10 |
iface.launch()
|
|
|
4 |
return "Hello " + text + "!!"
|
5 |
|
6 |
|
7 |
+
textbox = gr.Textbox(lines=5)
|
8 |
|
9 |
iface = gr.Interface(fn=greet, inputs=textbox, outputs="text")
|
10 |
iface.launch()
|