File size: 174 Bytes
5aa350d
 
 
 
 
 
 
 
 
 
fe85bac
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

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

demo = gr.ChatInterface(
    fn=echo,
    title="Echo Bot",
    multimodal=True,
)

demo.launch()