Hi
Trying to simply connect to the API, but receiving the error: requests.exceptions.SSLError: HTTPSConnectionPool(host=‘controller.asia-southeast1-gcp.pinecone.io’, port=443): Max retries exceeded with url: /actions/whoami (Caused by SSLError(SSLCertVerificationError(1, ‘[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1122)’)))
My code looks like this (with key and env defined elsewhere):
import pinecone
pinecone.init(api_key=PINECONE_KEY, environment=PINECONE_ENV)
pinecone.whoami()
Please help!