hysts's picture
hysts HF staff
Add files
4057f87
raw
history blame contribute delete
168 Bytes
import gradio as gr
def fn(message, history, system_prompt):
return message
gr.ChatInterface(fn=fn, additional_inputs=[gr.Textbox()], multimodal=True).launch()