bugfix: params
Browse files
app.py
CHANGED
@@ -6,5 +6,4 @@ def slow_echo(message, history):
|
|
6 |
time.sleep(0.3)
|
7 |
yield "You typed: " + message[: i+1]
|
8 |
|
9 |
-
gr.ChatInterface(slow_echo).launch()
|
10 |
-
demo.launch()
|
|
|
6 |
time.sleep(0.3)
|
7 |
yield "You typed: " + message[: i+1]
|
8 |
|
9 |
+
gr.ChatInterface(slow_echo).launch()
|
|