zerogpu-sandbox / app.py
endorno's picture
change message
246ca69
raw
history blame contribute delete
153 Bytes
import gradio as gr
def greet(name):
return "Hello World" + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()