f71f585
1
2
3
4
5
6
7
8
import gradio as gr def saluer(nom): return "Bonjour " + nom + " !" interface = gr.Interface(fn=saluer, inputs="text", outputs="text") interface.launch()