Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
|
|
3 |
def mensagem(nome):
|
4 |
return "Hello " + nome + "!\n" "My name is Anderson Lopes, I invite you to join me on this fascinating journey and explore the transformative potential of Deep Learning and NLP."
|
5 |
|
6 |
-
app_title = "Allow me to introduce? Type your name!"
|
7 |
|
8 |
mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title)
|
9 |
mostrar.launch()
|
|
|
3 |
def mensagem(nome):
|
4 |
return "Hello " + nome + "!\n" "My name is Anderson Lopes, I invite you to join me on this fascinating journey and explore the transformative potential of Deep Learning and NLP."
|
5 |
|
6 |
+
app_title = "Welcome! Allow me to introduce? Type your name!"
|
7 |
|
8 |
mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title)
|
9 |
mostrar.launch()
|