Test / app.py
Manofem's picture
Update app.py
3d12567 verified
raw
history blame
183 Bytes
import time
import gradio as gr
def test(message):
for i in range(len(message)):
time.sleep(0.3)
yield message[: i + 1]
gr.Interface(test, "textbox", "textbox").