File size: 206 Bytes
3d12567
fee252b
 
037d60c
3d12567
 
037d60c
fee252b
037d60c
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.3)
        yield "You typed: " + message[: i+1]

gr.ChatInterface(slow_echo).launch()