kaitwithkwk's picture
Create app.py
10a0507 verified
raw
history blame contribute delete
157 Bytes
import gradio as gr
def echo(message, history):
return message
print("Hello, world!")
chatbot = gr.ChatInterface(echo, type="messages")
chatbot.launch()