Curranj commited on
Commit
7208fd6
1 Parent(s): ee1b94f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import time
2
+ import gradio as gr
3
+
4
+ def slow_echo(message, history):
5
+ for i in range(len(message)):
6
+ time.sleep(0.05)
7
+ yield "You typed: " + message[: i+1]
8
+
9
+ demo = gr.ChatInterface(slow_echo).queue()
10
+
11
+ if __name__ == "__main__":
12
+ demo.launch()