Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Manofem
/
Test
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3d12567
Test
/
app.py
Manofem
Update app.py
3d12567
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
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"
).