Allow skipping tls verification#35
Conversation
|
I did some research and apparently this can be accomplished with the following built in Python env vars. Disable Python's HTTPS verification globally: Trust a specific self-signed certificate: I'd be happy to add these examples to the README.md - I'm a bit hesitant to duplicate this functionality inside runprompt itself. Is there some reason why it would be better to have it in runprompt? |
|
|
|
I have a much smaller patch for this: |
|
@chr15m Good catch. Updated! |
Local endpoints may be deployed with self-signed certificates, which Python rejects.
This PR adds an opt-in way to skip validation, following the existing patterns. Default behavior remains unchanged.
(Copy of #32, simply moved into a separate branch)