File size: 208 Bytes
39db851
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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)