teste2 / app.py
Programer123's picture
Update app.py
df16487 verified
raw
history blame
206 Bytes
import gradio as gr
def responder(message, history):
return f"Recebi a tua mensagem: {message}"
demo = gr.ChatInterface(
fn=responder,
title="Meu Chatbot",
type="messages"
)
demo.launch()