Spaces:
Build error
Build error
| import gradio as gr | |
| def saluer(nom): | |
| return "Bonjour " + nom + " !" | |
| interface = gr.Interface(fn=saluer, inputs="text", outputs="text") | |
| interface.launch() | |