Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asgeorges
/
ll-create
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ll-create
/
library
/
utils.py
asgeorges
Upload folder using huggingface_hub
2fdce3c
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
144 Bytes
import
threading
from
typing
import
*
def
fire_in_thread
(
f, *args, **kwargs
):
threading.Thread(target=f, args=args, kwargs=kwargs).start()