File size: 168 Bytes
4057f87
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr


def fn(message, history, system_prompt):
    return message


gr.ChatInterface(fn=fn, additional_inputs=[gr.Textbox()], multimodal=True).launch()