File size: 143 Bytes
7f8cbb9
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def greet(text):
    return text + " hello"

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