project1 / app.py
Lubna25's picture
Create app.py
03d39ff 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()