Spaces:
Sleeping
Sleeping
File size: 282 Bytes
3d97b57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import gradio as gr
def responder(texto):
return f"Recebi: {texto}"
demo = gr.Interface(
fn=responder,
inputs=gr.Textbox(label="Escreve algo"),
outputs=gr.Textbox(label="Resposta"),
title="Módulo Gradio"
)
demo.launch(server_name="0.0.0.0", server_port=7860) |