IO-AI / app.py
Mauriciotuks's picture
Create app.py
f71f585 verified
raw
history blame contribute delete
160 Bytes
import gradio as gr
def saluer(nom):
return "Bonjour " + nom + " !"
interface = gr.Interface(fn=saluer, inputs="text", outputs="text")
interface.launch()