Https: is there a way to get the weaviate client (connect_to_XXX) to pass the https certificate

Hey,

you can initiate your client the following

with weaviate.connect_to_local(additional_config=wvc.init.AdditionalConfig(trust_env=True)) as client:

….your code…

and then set environment variables for httpx to pick up any cert files: Environment Variables - HTTPX