| import gradio as gr | |
| def simple_function(input_text): | |
| return f"Le texte reçu est : {input_text}" | |
| interface = gr.Interface(fn=simple_function, inputs="text", outputs="text") | |
| interface.launch(share=True) | |
| import gradio as gr | |
| def simple_function(input_text): | |
| return f"Le texte reçu est : {input_text}" | |
| interface = gr.Interface(fn=simple_function, inputs="text", outputs="text") | |
| interface.launch(share=True) | |