File size: 155 Bytes
66d63c7
 
 
 
 
 
 
bf94120
1
2
3
4
5
6
7
8
import gradio as gr

def greet(name):
    return "Olá Mundo " + name + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")

iface.launch()