chat / app.py
JuanMa360's picture
bugfix: params
4eaf1b2
raw
history blame
192 Bytes
import time
import gradio as gr
def slow_echo(message, history):
for i in range(len(message)):
time.sleep(0.3)
yield message[: i+1]
gr.ChatInterface(slow_echo).launch()