File size: 271 Bytes
fc2e67f
884a3d8
fc2e67f
2bbf371
 
 
 
fc2e67f
2bbf371
884a3d8
f62d54a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import time
import gradio as gr

def slow_echo(message, history):
    for i in range(len(message)):
        time.sleep(0.05)
        yield "You typed: " + message[: i + 1]

demo = gr.ChatInterface(slow_echo, type="messages")

if __name__ == "__main__":
    demo.launch()