GChatbotUI / app.py
asrafnoor's picture
Update app.py
d63c679 verified
raw
history blame contribute delete
No virus
161 Bytes
import gradio as gr
def echo(message, history):
return message["text"]
demo = gr.ChatInterface(fn=echo, title="MMChatBot", multimodal=True)
demo.launch()