Domenico Daniele Celsa
Change words to test
8fa34cc
raw
history blame contribute delete
167 Bytes
import gradio as gr
def greet(yourname):
return "Hello and welcome " + yourname + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()