File size: 215 Bytes
60457da
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import time
import gradio as gr

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

gr.ChatInterface(slow_echo).queue().launch()