question1 / app.py
razanalsulami's picture
Create app.py
46f9a0b verified
raw
history blame
149 Bytes
import gradio as gr
def greet(input):
return "Hello " + input + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()