TestTrial / app.py
Catherine ZHOU
add notebooks
1089e3f
raw
history blame contribute delete
166 Bytes
import gradio as gr
# HELLO WORLD
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()