File size: 170 Bytes
812c2f1
 
8597b4c
812c2f1
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

print("hello world")
def greet(name):
    return "Hello " + name + "!!"

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