test / app.py
sarmadahmad8's picture
Add application file
27180e3
raw
history blame
No virus
153 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()