File size: 391 Bytes
fa0c70b d6f1250 fa0c70b fcc0f57 a1fc51b 686d56e ee58b50 686d56e |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
def mensagem(nome):
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."
app_title = "Welcome! Allow me to introduce? Type your name!"
mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title)
mostrar.launch()
|