RakanAlsheraiwi's picture
Rename app_py to app.py
e926e62 verified
raw
history blame contribute delete
150 Bytes
import gradio as gr
def greet(input):
return "Hello " + input + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()