experiment / app.py
MRamzan's picture
sendon
5469de6
raw
history blame contribute delete
161 Bytes
import gradio as gr
def greet(name):
return "Assalam o Alaikum " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()