tein / app.py
giseldo's picture
Update app.py
591b20d verified
Raw
History Blame Contribute Delete
139 Bytes
import gradio as gr
def resp(entrada1, entrada2):
return "Ola Mundo"
demo = gr.Interface(resp, ["text", "text"], "text")
demo.launch()