chatbot / app.py
maximiliandauner's picture
added app.py
5e891e0 verified
raw
history blame contribute delete
237 Bytes
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(
fn=slow_echo,
type="messages"
).launch()