just_test / app.py
yisol
Add application file
8817d16
raw
history blame
173 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
print("why")
print("s")