How to configure proxy for AI assistent ? #39897
Unanswered
pistata112
asked this question in
Q&A
Replies: 1 comment
-
|
Root Cause: The AI assistant (both Copilot and OpenAI) does not respect DBeavers proxy settings because File: Current code: public AbstractHttpAIClient() {
this.client = new MonitoredHttpClient(
HttpClient.newHttpClient(), // NO proxy settings
this::mapHttpError
);
}Workaround: Until fixed, configure JVM proxy arguments: -Dhttp.proxyHost=proxy-host -Dhttp.proxyPort=8080
-Dhttps.proxyHost=proxy-host -Dhttps.proxyPort=8080Fix Required: Modify Reference: Other DBeaver features (version checks) have proper proxy support via configured HTTP clients. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I am on VPN network I have to use proxy. I have proxy configuration, and it work for e.g. new version check.
But it doesn't work for AI asistent = Copilot. I when through GitHub authorization correctly, but now when I write a prompt it fails with network problem. Does AI asistent have its own configuration ? If yes, where ?
Beta Was this translation helpful? Give feedback.
All reactions