firstapp / app.py
anilvt's picture
Update app.py
14f618a verified
raw
history blame contribute delete
172 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text", title="Anil's 1st App")
demo.launch()