just_test / app.py
yisol's picture
Update app.py
701aab4 verified
raw
history blame contribute delete
No virus
186 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")
print("wtf")