Spaces:
Sleeping
Sleeping
File size: 169 Bytes
46757ed | 1 2 3 4 5 6 7 8 9 10 | import gradio as gr
def echo(message, history)
return message
chatbot = gr.ChatInterface(echo) #chatbot UI - coversation history and user input
chatbot.launch()
|