first2 / app.py
sks01dev's picture
My updates
443cac2
raw
history blame contribute delete
154 Bytes
import gradio as gr
def greet(name):
return "Hello there " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()