File size: 161 Bytes
ac1ea6b
 
 
 
 
f759de3
ac1ea6b
d63c679
1
2
3
4
5
6
7
8
9
import gradio as gr

def echo(message, history):
    return message["text"]

demo = gr.ChatInterface(fn=echo, title="MMChatBot", multimodal=True)
demo.launch()