first-chatbot1 / app.py
annakcarls's picture
Added print statement
122b995 verified
raw
history blame contribute delete
160 Bytes
import gradio as gr
def echo(message, history):
return message
print("Hello, world!")
chatbot = gr.ChatInterface(echo, type="messages")
chatbot.launch()