I have a ollama engine running on a server protected by an api key and a self-signed certificate.
To use it with curl, I need to add --insecure to curl command line to allow the connection to ollama.
And in python, I add to defined a httpx.Client(verify=False) to do avoid verification.
Is it possible to do the same in a client configuration ?