import gradio as gr | |
def fn(message, history, system_prompt): | |
return message | |
gr.ChatInterface(fn=fn, additional_inputs=[gr.Textbox()], multimodal=True).launch() | |
import gradio as gr | |
def fn(message, history, system_prompt): | |
return message | |
gr.ChatInterface(fn=fn, additional_inputs=[gr.Textbox()], multimodal=True).launch() | |