ChatbotLab / app.py
demetz's picture
Update app.py
834791f verified
raw
history blame
157 Bytes
import gradio as gr
def echo(message, history):
return message
print("Hello, world!")
chatbot = gr.ChatInterface(echo, type="messages")
chatbot.launch()