File size: 162 Bytes
fd38af2
 
 
73bf526
fd38af2
 
 
1
2
3
4
5
6
7
import gradio as gr

def greet(name):
    return "We are learning AI " + name + "!!"

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