Hussain Shaikh
test commit
6325f49
raw
history blame
147 Bytes
import gradio as gr
def greet(name):
return "Hell" + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()