FinalProject / app.py
Ouahbi's picture
Add application file
8518d9a
raw
history blame
300 Bytes
��import gradio as gr
def greet(name):
return 'Hello ' + name + '!!'
demo = gr.Interface(fn=greet, inputs='text', outputs='text')
demo.launch()