project / ap1234.py
rnlduatm's picture
Update space
ecdaa25
raw
history blame contribute delete
155 Bytes
import gradio as gr
def greet(name):
return "Helloasdfasdf " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()