Q1 / app.py
fahad11182's picture
Update app.py
68dfd2f verified
raw
history blame
No virus
149 Bytes
import gradio as gr
def greet(input):
return "Hello " + input + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()