File size: 140 Bytes
7844e63
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

def test(message, history):
    print("history", history)
    return message

chatbot = gr.ChatInterface(test).launch()