new-space / app.py
cool-radio's picture
initial commit
a2ba8d7 verified
raw
history blame contribute delete
187 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
if __name__ == "__main__":
demo.launch()