Update app.py
Browse files
app.py
CHANGED
|
@@ -5,11 +5,6 @@ def mensagem(nome):
|
|
| 5 |
|
| 6 |
app_title = "Welcome! Allow me to introduce? Type your name!"
|
| 7 |
|
| 8 |
-
app_css = """
|
| 9 |
-
.gr-interface-title {
|
| 10 |
-
text-align: center;
|
| 11 |
-
}
|
| 12 |
-
"""
|
| 13 |
|
| 14 |
-
mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title
|
| 15 |
mostrar.launch()
|
|
|
|
| 5 |
|
| 6 |
app_title = "Welcome! Allow me to introduce? Type your name!"
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
+
mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title)
|
| 10 |
mostrar.launch()
|