Update app.py
Browse files
app.py
CHANGED
|
@@ -5,5 +5,11 @@ def mensagem(nome):
|
|
| 5 |
|
| 6 |
app_title = "Welcome! Allow me to introduce? Type your name!"
|
| 7 |
|
| 8 |
-
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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, css=app_css)
|
| 15 |
+
mostrar.launch()
|