hysts HF staff commited on
Commit
7dec3b3
1 Parent(s): ead2f2b
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):
5
+ return message
6
+
7
+
8
+ gr.ChatInterface(fn=fn).launch()