Exam1 / app.py
Abduuu's picture
Create app.py
8c4cbf2 verified
raw
history blame contribute delete
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()