import gradio as gr def resp(entrada1, entrada2): return "Ola Mundo" demo = gr.Interface(resp, ["text", "text"], "text") demo.launch()