File size: 222 Bytes
4a3fd21
 
21a1d8f
4a3fd21
21a1d8f
 
 
9d24725
21a1d8f
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

def greet(name):
        return "Hello " + name + "ji!!"
        

iface = gr.Interface(fn=greet, inputs="text", outputs="text", 
        title="simple app", description="via gradio")


iface.launch()