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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,5 +3,5 @@ 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
- mostrar = gr.Interface(fn=mensagem, input="text", output="text")
7
  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
+ mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text")
7
  mostrar.launch()