sushtest / app.py
schakkir's picture
imp
4a3fd21
raw
history blame contribute delete
222 Bytes
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()