-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is it possible to add proxy support? #7
Comments
The proxy on the original ChatGPT extension was implemented only for Browser integration, which is no longer supported in this extension. To utilize proxies in vs code extensions though, you have a couple of options, which are out of this extension's capability but a vs code setting you can use in your vs code. Try adding the following to your user "remote.extensionKind": {"genieai.chatgpt-vscode": ["ui"] Also if you are running the proxy locally on http you can bypass the SSL and try adding these (Change URL with your own proxy) in your User "http.proxy": "http://127.0.0.1:1234/",
"http.proxyStrictSSL": false, |
Thanks for your response, it works for me right now. 😀 |
|
If anyone found this issue and is looking to make a reverse-proxy to be used with Genie, here's my implementation of a mock-server for Azure OpenAI. I can input my mock-server URL and have Genie work out of the box with it. You probably need to add https://gist.github.com/IlmariKu/ca59013e5a76f3636f02daa75ac93549 |
Describe the feature
just add the proxy support as this extension:https://github.com/gencay/vscode-chatgpt
The text was updated successfully, but these errors were encountered: