RakanAlsheraiwi's picture
Create app_py
57201fa verified
raw
history blame
150 Bytes
import gradio as gr
def greet(input):
return "Hello " + input + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()