abidlabs's picture
abidlabs HF Staff
Update app.py
0e071ad
raw
history blame contribute delete
140 Bytes
import gradio as gr
def test(message, history):
print("history", history)
return message
chatbot = gr.ChatInterface(test).launch()