first-chatbot2 / app.py
rachea's picture
Create app.py
bf0ffcb verified
raw
history blame
173 Bytes
import gradio as gr
def echo(message, history):
return message
chatbot = gr.chatInterface(echo) #chatbot UI - conversation history and user input
chatbot.launch()