HxH / app.py
donatscript's picture
add print statement
c00da69 verified
raw
history blame
No virus
164 Bytes
import gradio as gr
def greet(name):
print(name)
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()