How to configure proxy for AI assistent ? #39897
Replies: 2 comments 2 replies
-
|
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.
-
|
Hi there, thank you for the suggestion. Could you please create a feature request? |
Beta Was this translation helpful? Give feedback.
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