FricSpace / app.py
Fric7ion's picture
Update app.py
4da8e54 verified
import time
import gradio as gr
def slow_echo(message, history):
for i in range(len(message)):
yield "You typed: " + message[: i+1]
gr.ChatInterface(slow_echo).launch()