abidlabs's picture
abidlabs HF Staff
Duplicate from abidlabs/test-chat-interface
7844e63
raw
history blame
140 Bytes
import gradio as gr
def test(message, history):
print("history", history)
return message
chatbot = gr.ChatInterface(test).launch()