tclopess commited on
Commit
fa0c70b
1 Parent(s): 9846662

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +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, input="text", output="text")
7
+ mostrar.launch()