Risrit1121's picture
Upload folder using huggingface_hub
283ba4a verified
Raw
History Blame Contribute Delete
187 Bytes
import ssl
import certifi
def default_ssl_context() -> ssl.SSLContext:
context = ssl.create_default_context()
context.load_verify_locations(certifi.where())
return context