def greet(name): return "Bonjour " + name + "!" import gradio as gr demo = gr.Interface(fn=greet, inputs = gr.Textbox(lines =4,placeholder = " Name Here...", label="Your name"), outputs =gr.Textbox(lines =4,placeholder = " Name Here...", label="Flower name"),) demo.launch(share=True)