Braden Kelley
Braden Kelley
@marcusschiesser was just about to jump on this but it looks like @abdul121104 beat me to it. I don't think it's quite ready though - I left some comments.
I was thinking you could do this on startup: 1. copy the contents of `NODE_EXTRA_CA_CERTS` if it already exists 2. append your pre-bundled certs and write that final string to...
I'm running into this on a corporate VPN as well. Normally one of these catches it: ``` ENV REQUESTS_CA_BUNDLE=/tls/custom-ca-bundle.pem ENV SSL_CERT_FILE=/tls/custom-ca-bundle.pem ENV GRPC_DEFAULT_SSL_ROOTS_FILE_PATH=/tls/custom-ca-bundle.pem ENV CURL_CA_BUNDLE=/tls/custom-ca-bundle.pem ``` but doesn't seem to...
from what I can tell code that does the downloading seems to be in `huggingface_hub`. It also seems to be using `requests` to actually do the downloading, so not sure...
Alright well, I figured out the issue for me is due to stricter verifications in urllib3 that were introduced in v2.4.0 in april: https://github.com/urllib3/urllib3/releases/tag/2.4.0 For me that might mean pinning...
I haven't updated to v2 yet but I can guarantee if this isn't fixed by the time I do I'll be looking into how to fix it 😂 Do you...
Interesting... I started experimenting with biome v2 a little bit ago and had to revert back for the time being but i was noticing some weird things. I'm not sure...
I've actually noticed this same issue with `pyright` as well lately, and am seeing it with biome v1, where it just sometimes stops working until I restart. I wonder if...