Crimson206 commited on
Commit
7152913
Β·
verified Β·
1 Parent(s): df46be5

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def slow_echo(message, history):
4
+ return message
5
+
6
+ demo = gr.ChatInterface(slow_echo).queue().launch()