hysts HF staff commited on
Commit
4057f87
·
1 Parent(s): 4c3dc1e
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def fn(message, history, system_prompt):
5
+ return message
6
+
7
+
8
+ gr.ChatInterface(fn=fn, additional_inputs=[gr.Textbox()], multimodal=True).launch()