Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
test-yield
like
0
Running
on
CPU Upgrade
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Mar 16, 2023
Commit
c3e79bb
·
1 Parent(s):
70cc0ce
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import time
2
+
import gradio as gr
3
+
4
+
def spell(x):
5
+
for i in range(len(x)):
6
+
time.sleep(1)
7
+
yield x[:i]
8
+
9
+
gr.Interface(spell, "textbox", "textbox").launch()