testing / app.py
shitijnigam's picture
update to public
a53a98d
raw
history blame
No virus
205 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!! (welcome to testing)"
iface = gr.Interface(
fn = greet,
inputs = "text",
outputs = "text"
)
iface.launch(share = True)