abidlabs's picture
abidlabs HF Staff
Create app.py
f7ade3a
raw
history blame contribute delete
181 Bytes
import time
import gradio as gr
def spell(x):
i = 0
while True:
i += 1
time.sleep(1)
yield x[:i]
gr.Interface(spell, "textbox", "textbox").launch()