ChatBot_Lab / app.py
AriniR's picture
Create app.py
96c0fed verified
raw
history blame
175 Bytes
import gradio as gr
chatbot = gr.ChatInterface()
chatbot.launch()
def echo (message, history):
chatbot = gr.ChatInterface(echo)
chatbot.launch
# repeats messages.