23B054Q / app.py
Deeksha Shetty
update app.py
aa59079
raw
history blame
146 Bytes
import gradio as gr
def greet(name):
return "Hi " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()