🙆‍♀️

openai-nodeをproxy経由かつcafile利用せずにリクエストしたい

2023/03/27に公開

まずProxy経由のリクエストを方法を探したところ、ちょうど良いGithub issueが上がっており、createChatCompletionでインスタンス生成時にAxiosのConfigurationを設定できました。

https://github.com/openai/openai-node/issues/85

次に、 unable to verify the first certificate ということで証明書の検証が失敗してる。
しかし、証明書の指定方法が見つからず、今度は HttpsProxyAgentのgithub issueを検索したところ、

https://github.com/TooTallNate/node-https-proxy-agent/issues/99

まさにIssueを見つけ、2.2.4のバージョン利用することで解決できました

とりあえず、ローカルで開発に使う分にはこれで良さそう。

Discussion