tclopess commited on
Commit
d6f1250
1 Parent(s): 8dad52c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
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
- mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text")
7
  mostrar.launch()
 
1
  import gradio as gr
2
 
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
+ mostrar = gr.Interface(fn=mensagem, inputs="Text", outputs="Text")
7
  mostrar.launch()